[object Object]

← back to Designer Wallcoverings

auto-save: 2026-07-07T13:30:45 (15 files) — pending-approval/boost-filter-consolidation-2026-06-25 shopify/enrich-marketed-mismatch.jsonl shopify/package-lock.json shopify/package.json shopify/scripts/enrich-color-details-local.py

5cc0714b84910194099fd4854d6c147fb11b576c · 2026-07-07 13:30:55 -0700 · Steve Abrams

Files touched

Diff

commit 5cc0714b84910194099fd4854d6c147fb11b576c
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Tue Jul 7 13:30:55 2026 -0700

    auto-save: 2026-07-07T13:30:45 (15 files) — pending-approval/boost-filter-consolidation-2026-06-25 shopify/enrich-marketed-mismatch.jsonl shopify/package-lock.json shopify/package.json shopify/scripts/enrich-color-details-local.py
---
 .../ImportNewSkufromURL/pierre-frey-enrich.mjs     |  102 +
 .../pierre-frey-full-scrape.mjs                    |  206 +
 .../ImportNewSkufromURL/pierre-frey-listing.json   | 9290 ++++++++++++++++++++
 .../ImportNewSkufromURL/pierre-frey-scrape.jsonl   | 1161 +++
 .../pierre-frey-shopify-draft.mjs                  |  Bin 0 -> 9101 bytes
 .../ImportNewSkufromURL/pierre-frey-upsert.mjs     |  130 +
 backups/deleted-collections-20260707.json          | 1085 +++
 shopify/enrich-marketed-mismatch.jsonl             |   15 +
 shopify/package-lock.json                          |    4 +-
 shopify/package.json                               |    2 +-
 shopify/scripts/enrich-color-details-local.py      |    8 +-
 .../theme-LIVE-591/snippets/color-palette.liquid   |    2 +-
 .../theme-LIVE-591/snippets/product-gallery.liquid |    2 +-
 13 files changed, 11998 insertions(+), 9 deletions(-)

diff --git a/DW-Programming/ImportNewSkufromURL/pierre-frey-enrich.mjs b/DW-Programming/ImportNewSkufromURL/pierre-frey-enrich.mjs
new file mode 100644
index 00000000..fef24d70
--- /dev/null
+++ b/DW-Programming/ImportNewSkufromURL/pierre-frey-enrich.mjs
@@ -0,0 +1,102 @@
+#!/usr/bin/env node
+/**
+ * Pierre Frey AI enrichment — Gemini 2.0 Flash vision.
+ * ONLY rows where ai_tags IS NULL and image_url IS NOT NULL.
+ * Writes ai_colors/ai_tags/ai_styles/ai_patterns/ai_description/ai_background_color + ai_accepted_at.
+ * Cost: ~$0.0006/image. HARD CAP $1.50 — stops before exceeding.
+ * Resumable: each row committed immediately; re-run continues where it left off.
+ */
+import path from 'path';
+import { fileURLToPath } from 'url';
+import fs from 'fs';
+import dotenv from 'dotenv';
+import pg from 'pg';
+
+const __dirname = path.dirname(fileURLToPath(import.meta.url));
+dotenv.config({ path: path.join(__dirname, '.env') });
+// Gemini key from secrets-manager
+const secretsEnv = '/Users/macstudio3/Projects/secrets-manager/.env';
+if (fs.existsSync(secretsEnv)) dotenv.config({ path: secretsEnv });
+const GKEY = process.env.GEMINI_API_KEY;
+const MODEL = 'gemini-2.0-flash';
+const ENDPOINT = `https://generativelanguage.googleapis.com/v1beta/models/${MODEL}:generateContent?key=${GKEY}`;
+const COST_PER = 0.0006;
+const CAP = 1.50;
+const sleep = (ms) => new Promise((r) => setTimeout(r, ms));
+
+const PROMPT = `You are an interior-design cataloguer analyzing a wallcovering product image. Return STRICT JSON only, no markdown:
+{
+ "description": "2 commercial sentences describing the design; NEVER use the word 'wallpaper' — always 'wallcovering'.",
+ "backgroundColor": "single base color name",
+ "colors": [{"name":"color name","hex":"#RRGGBB","percentage":55}],
+ "styles": ["design style periods e.g. Traditional, Art Deco, Contemporary"],
+ "patterns": ["pattern types e.g. Floral, Geometric, Damask, Texture"],
+ "tags": ["8-14 interior-design search tags"]
+}
+Colors: 2-6 entries, percentages sum ~100. Use only what you see. Do NOT include example values.`;
+
+async function fetchImageB64(url) {
+  const res = await fetch(url, { headers: { 'User-Agent': 'Mozilla/5.0' } });
+  if (!res.ok) throw new Error(`img HTTP ${res.status}`);
+  const ct = res.headers.get('content-type') || 'image/webp';
+  const buf = Buffer.from(await res.arrayBuffer());
+  return { b64: buf.toString('base64'), mime: ct.split(';')[0] };
+}
+
+async function gemini(b64, mime) {
+  const body = {
+    contents: [{ parts: [{ text: PROMPT }, { inline_data: { mime_type: mime, data: b64 } }] }],
+    generationConfig: { temperature: 0.2, responseMimeType: 'application/json' },
+  };
+  const res = await fetch(ENDPOINT, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body) });
+  if (!res.ok) throw new Error(`gemini HTTP ${res.status}: ${(await res.text()).slice(0, 200)}`);
+  const j = await res.json();
+  const txt = j.candidates?.[0]?.content?.parts?.[0]?.text || '';
+  return JSON.parse(txt.replace(/^```json\s*|\s*```$/g, ''));
+}
+
+async function main() {
+  if (!GKEY) throw new Error('GEMINI_API_KEY not set');
+  const limitArg = process.argv.includes('--limit') ? parseInt(process.argv[process.argv.indexOf('--limit') + 1]) : 0;
+  const { Pool } = pg;
+  const pool = new Pool({ connectionString: process.env.DATABASE_URL });
+  const q = await pool.query(
+    `SELECT mfr_sku, pattern_name, color_name, image_url FROM pierre_frey_catalog
+     WHERE ai_tags IS NULL AND image_url IS NOT NULL AND image_url <> ''
+     ORDER BY mfr_sku ${limitArg ? 'LIMIT ' + limitArg : ''}`
+  );
+  const rows = q.rows;
+  const est = (rows.length * COST_PER).toFixed(4);
+  console.log(`[enrich] ${rows.length} rows missing ai_tags. Est cost $${est} @ $${COST_PER}/img. Cap $${CAP}.`);
+  if (rows.length * COST_PER > CAP) console.log(`[enrich] NOTE: full run would exceed cap; will STOP at $${CAP}.`);
+
+  let spend = 0, ok = 0, fail = 0;
+  for (const r of rows) {
+    if (spend + COST_PER > CAP) { console.log(`[enrich] CAP $${CAP} reached at $${spend.toFixed(4)} — stopping (${ok} done, ${rows.length - ok - fail} left).`); break; }
+    try {
+      const { b64, mime } = await fetchImageB64(r.image_url);
+      const a = await gemini(b64, mime);
+      spend += COST_PER;
+      const desc = (a.description || '').replace(/\bwallpapers?\b/gi, (m) => (m[0] === m[0].toUpperCase() ? 'Wallcovering' : 'wallcovering'));
+      await pool.query(
+        `UPDATE pierre_frey_catalog SET
+           ai_description=$2, ai_background_color=$3, ai_colors=$4, ai_styles=$5, ai_patterns=$6, ai_tags=$7,
+           ai_accepted_at=now(), updated_at=now()
+         WHERE mfr_sku=$1`,
+        [r.mfr_sku, desc, (a.backgroundColor || '').slice(0, 100),
+         JSON.stringify(a.colors || []), JSON.stringify(a.styles || []),
+         JSON.stringify(a.patterns || []), JSON.stringify(a.tags || [])]
+      );
+      ok++;
+      if (ok % 25 === 0) console.log(`[enrich] +${ok} ok, ${fail} fail, spend $${spend.toFixed(4)} — last ${r.mfr_sku}`);
+      await sleep(120);
+    } catch (e) {
+      fail++;
+      if (fail <= 15) console.error(`[enrich] ${r.mfr_sku} FAIL ${e.message}`);
+      await sleep(200);
+    }
+  }
+  console.log(`[enrich] DONE ok=${ok} fail=${fail} TOTAL COST $${spend.toFixed(4)} (of $${CAP} cap)`);
+  await pool.end();
+}
+main().catch((e) => { console.error('FATAL', e); process.exit(1); });
diff --git a/DW-Programming/ImportNewSkufromURL/pierre-frey-full-scrape.mjs b/DW-Programming/ImportNewSkufromURL/pierre-frey-full-scrape.mjs
new file mode 100644
index 00000000..dec0bd61
--- /dev/null
+++ b/DW-Programming/ImportNewSkufromURL/pierre-frey-full-scrape.mjs
@@ -0,0 +1,206 @@
+#!/usr/bin/env node
+/**
+ * Pierre Frey FULL catalog scrape — feed-first plain fetch, $0.
+ *
+ * Listing: https://www.pierrefrey.com/en/wallpapers?products-page=N  (N=1..until empty)
+ * Detail : https://www.pierrefrey.com/en/wallpapers/<SKU>-<slug>     (SSR HTML)
+ *
+ * Resumable: checkpoint to pierre-frey-scrape.jsonl (one detail record per line, keyed by mfr_sku).
+ * Re-running skips SKUs already in the checkpoint. NO fake/fallback data.
+ */
+import fs from 'fs';
+import path from 'path';
+import { fileURLToPath } from 'url';
+
+const __dirname = path.dirname(fileURLToPath(import.meta.url));
+const BASE = 'https://www.pierrefrey.com';
+const UA = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36';
+const CKPT = path.join(__dirname, 'pierre-frey-scrape.jsonl');
+const sleep = (ms) => new Promise((r) => setTimeout(r, ms));
+const jitter = () => 200 + Math.floor(Math.random() * 200); // 200-400ms polite throttle
+
+function decodeEntities(s) {
+  return (s || '')
+    .replace(/&#0?39;/g, "'").replace(/&#x27;/gi, "'").replace(/&amp;/g, '&')
+    .replace(/&quot;/g, '"').replace(/&lt;/g, '<').replace(/&gt;/g, '>')
+    .replace(/&nbsp;/g, ' ').replace(/&#x([0-9a-f]+);/gi, (_, h) => String.fromCharCode(parseInt(h, 16)))
+    .trim();
+}
+const titleCase = (s) => (s || '').toLowerCase().replace(/\b\w/g, (c) => c.toUpperCase());
+const stripTags = (s) => decodeEntities((s || '').replace(/<[^>]+>/g, ' ').replace(/\s+/g, ' ').trim());
+
+async function fetchText(url, tries = 3) {
+  for (let i = 0; i < tries; i++) {
+    try {
+      const res = await fetch(url, { headers: { 'User-Agent': UA, Accept: 'text/html' } });
+      if (res.status === 404) return { status: 404, html: '' };
+      if (!res.ok) throw new Error(`HTTP ${res.status}`);
+      return { status: 200, html: await res.text() };
+    } catch (e) {
+      if (i === tries - 1) return { status: 0, html: '', error: e.message };
+      await sleep(800 * (i + 1));
+    }
+  }
+}
+
+/** Parse a listing page's .resultListItem blocks. */
+function parseListing(html) {
+  const out = [];
+  const itemRe = /<a\s+href="([^"]+)"\s+class="resultListItem__link">([\s\S]*?)<\/a>/g;
+  let m;
+  while ((m = itemRe.exec(html))) {
+    const href = m[1];
+    const inner = m[2];
+    const imgM = inner.match(/<img[^>]*\bsrc="([^"]+)"/i);
+    const altM = inner.match(/<img[^>]*\balt="([^"]*)"/i);
+    const supM = inner.match(/resultListItem__supTitle">([^<]*)</i);
+    const titleM = inner.match(/resultListItem__title">([^<]*)</i);
+    const subM = inner.match(/resultListItem__subTitle">([^<]*)</i);
+    const pattern = decodeEntities(titleM?.[1] || altM?.[1] || '');
+    const sub = decodeEntities(subM?.[1] || '');
+    const category = decodeEntities(supM?.[1] || 'Wallpapers');
+    let sku = '', color = '';
+    const dash = sub.indexOf(' - ');
+    if (dash > -1) { sku = sub.slice(0, dash).trim(); color = titleCase(sub.slice(dash + 3).trim()); }
+    else sku = sub.trim();
+    if (!sku) { const u = href.match(/\/(FP\d{4,}[A-Z0-9]*)-/i); if (u) sku = u[1].toUpperCase(); }
+    if (!sku) continue;
+    out.push({
+      mfr_sku: sku, pattern_name: pattern, color_name: color, category,
+      product_url: href.startsWith('http') ? href : `${BASE}${href}`,
+      list_image: imgM ? imgM[1] : null,
+    });
+  }
+  return out;
+}
+
+/** Parse a detail page: specs, packshot, gallery, room, color from breadcrumb. */
+function parseDetail(html, listRec) {
+  const rec = { ...listRec };
+
+  // spec pairs — iterate each specTechInfos__infoRow block (robust to --border variants)
+  const specs = {};
+  const rowRe = /specTechInfos__infoRow[^"]*">([\s\S]*?)(?=<div class="specTechInfos__infoRow|<\/(?:ul|section|div class="specTechInfos)|$)/g;
+  let t;
+  while ((t = rowRe.exec(html))) {
+    const block = t[1];
+    const nameM = block.match(/specTechInfos__infoName">([^<]+)</);
+    if (!nameM) continue;
+    const k = decodeEntities(nameM[1]).trim();
+    const vals = [...block.matchAll(/specTechInfos__infoValue">([^<]*)</g)].map((x) => decodeEntities(x[1]).trim()).filter(Boolean);
+    if (k && vals.length && !(k in specs)) specs[k] = vals.join(' | ');
+  }
+  // primary block fallback
+  const priRe = /infoRow-label">([^<]+)<\/h3>\s*<div class="productInfos__infoRow-infos">\s*<div class="productInfos__infoRow-info">([^<]+)</g;
+  let p;
+  while ((p = priRe.exec(html))) {
+    const k = decodeEntities(p[1]).trim();
+    if (!(k in specs)) specs[k] = decodeEntities(p[2]).trim();
+  }
+  rec.specs = specs;
+  rec.width = specs['Width'] || null;
+  rec.composition = specs['Composition'] || null;
+  rec.material = specs['Backing'] || specs['Type'] || null;
+  rec.pattern_repeat = specs['Repeat'] || null;
+  rec.weight = specs['Weight'] || null;
+  rec.certifications = specs['Certifications'] || null;
+  rec.sales_unit = specs['Sales Unit'] || null;
+
+  // roll length: Pierre Frey sells per meter/yard (no fixed roll length) → null unless present
+  rec.roll_length = specs['Length'] || specs['Roll'] || null;
+
+  // Color from breadcrumb JSON-LD position 3 (authoritative), fallback to list color
+  const ld = html.match(/"@type":"BreadcrumbList"[\s\S]*?<\/script>/);
+  if (ld) {
+    const names = [...ld[0].matchAll(/"name":"([^"]+)"/g)].map((x) => decodeEntities(x[1]));
+    if (names.length >= 3) rec.color_name = titleCase(names[names.length - 1]);
+  }
+  if (!rec.color_name) rec.color_name = listRec.color_name || '';
+
+  // pattern from h1 second line if list pattern missing
+  if (!rec.pattern_name) {
+    const h1 = html.match(/<h1[^>]*>([\s\S]*?)<\/h1>/);
+    if (h1) { const parts = stripTags(h1[1]).split(/\s{2,}|Wallpapers/).filter(Boolean); rec.pattern_name = (parts.pop() || '').trim(); }
+  }
+
+  // collection = pattern name (Pierre Frey groups by pattern)
+  rec.collection = rec.pattern_name || null;
+
+  // description: meta description or first productInfos paragraph
+  const md = html.match(/<meta name="description" content="([^"]*)"/i);
+  rec.description = md ? decodeEntities(md[1]) : null;
+
+  // images — packshots (full-res, strip _NxM_webp size suffix; prefer base .webp)
+  const allImgs = [...html.matchAll(/https:\/\/static\.pierrefrey\.com\/uploads\/product\/(?:packshots|data-sheet\/image)\/[^"'\s)]+\.(?:webp|jpg|jpeg|png)/gi)].map((x) => x[0]);
+  const packshots = allImgs.filter((u) => u.includes('/packshots/'));
+  // base (no _NxM_webp) versions
+  const baseOf = (u) => u.replace(/_\d+x\d+_webp\.webp$/i, '.webp');
+  const bases = [...new Set(packshots.map(baseOf))];
+  rec.image_url = bases[0] || (allImgs[0] || null);
+  rec.gallery_images = [...new Set([...bases, ...allImgs.filter((u) => u.includes('/data-sheet/'))])];
+  rec.all_images = rec.gallery_images.join(',');
+  // room/ambiance images (data-sheet lifestyle shots)
+  const room = allImgs.find((u) => u.includes('/data-sheet/'));
+  rec.room_setting_url = room || null;
+
+  rec.product_type = 'wallcovering';
+  return rec;
+}
+
+function loadCheckpoint() {
+  const done = new Map();
+  if (fs.existsSync(CKPT)) {
+    for (const line of fs.readFileSync(CKPT, 'utf8').split('\n')) {
+      if (!line.trim()) continue;
+      try { const o = JSON.parse(line); if (o.mfr_sku) done.set(o.mfr_sku, o); } catch {}
+    }
+  }
+  return done;
+}
+
+async function main() {
+  const done = loadCheckpoint();
+  console.log(`[pf-scrape] checkpoint has ${done.size} detail records`);
+  const ck = fs.createWriteStream(CKPT, { flags: 'a' });
+
+  // Phase 1: enumerate listing
+  const listing = [];
+  const seenSku = new Set();
+  for (let page = 1; page <= 60; page++) {
+    const { status, html } = await fetchText(`${BASE}/en/wallpapers?products-page=${page}`);
+    if (status !== 200) { console.log(`[list] page ${page} status ${status} — stop`); break; }
+    const items = parseListing(html);
+    if (items.length === 0) { console.log(`[list] page ${page} empty — end of catalog`); break; }
+    let added = 0;
+    for (const it of items) if (!seenSku.has(it.mfr_sku)) { seenSku.add(it.mfr_sku); listing.push(it); added++; }
+    console.log(`[list] page ${page}: ${items.length} items (${added} new) — total ${listing.length}`);
+    await sleep(jitter());
+  }
+  console.log(`[pf-scrape] listing enumerated: ${listing.length} unique products`);
+  fs.writeFileSync(path.join(__dirname, 'pierre-frey-listing.json'), JSON.stringify(listing, null, 2));
+
+  // Phase 2: detail pages (resume — skip done)
+  let n = 0, fetched = 0, fails = 0;
+  for (const rec of listing) {
+    n++;
+    if (done.has(rec.mfr_sku)) continue;
+    const { status, html, error } = await fetchText(rec.product_url);
+    if (status !== 200 || !html) {
+      fails++;
+      console.log(`[detail ${n}/${listing.length}] ${rec.mfr_sku} FAIL status=${status} ${error || ''}`);
+      await sleep(jitter());
+      continue;
+    }
+    const detail = parseDetail(html, rec);
+    detail.scraped_at = new Date().toISOString();
+    ck.write(JSON.stringify(detail) + '\n');
+    done.set(rec.mfr_sku, detail);
+    fetched++;
+    if (fetched % 25 === 0) console.log(`[detail ${n}/${listing.length}] +${fetched} fetched, ${fails} fails — last ${rec.mfr_sku} ${detail.pattern_name}/${detail.color_name} w=${detail.width || '?'}`);
+    await sleep(jitter());
+  }
+  ck.end();
+  console.log(`[pf-scrape] DONE. listing=${listing.length} detailRecords=${done.size} newFetched=${fetched} fails=${fails}`);
+}
+
+main().catch((e) => { console.error('FATAL', e); process.exit(1); });
diff --git a/DW-Programming/ImportNewSkufromURL/pierre-frey-listing.json b/DW-Programming/ImportNewSkufromURL/pierre-frey-listing.json
new file mode 100644
index 00000000..ba439911
--- /dev/null
+++ b/DW-Programming/ImportNewSkufromURL/pierre-frey-listing.json
@@ -0,0 +1,9290 @@
+[
+  {
+    "mfr_sku": "FP288001",
+    "pattern_name": "Le bassin aux nenuphars",
+    "color_name": "Lac",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP288001-le-bassin-aux-nenuphars",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP270001",
+    "pattern_name": "Belle de provence",
+    "color_name": "Jardin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP270001-belle-de-provence",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP284001",
+    "pattern_name": "Les quatre potagers",
+    "color_name": "Travertin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP284001-les-quatre-potagers",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP261001",
+    "pattern_name": "Casa",
+    "color_name": "Perle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP261001-casa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0c94984c-2b81-40e9-9d48-f1e00472fae6/hpTxEH19UizYkitLldVx_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP277001",
+    "pattern_name": "Giardino",
+    "color_name": "Mediterranee",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP277001-giardino",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0e4f7f35-9f5e-494b-a30d-eb6dd5bb0c00/uy5LyMlY5vx9ZdTkSZjj_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP265001",
+    "pattern_name": "Sceaux nacre",
+    "color_name": "Glacier",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP265001-sceaux-nacre",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1253054b-b0cf-41a2-9d4c-5d1451a59aac/isquJMjScbtwUwe83U6f_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP272002",
+    "pattern_name": "L'allee du roi",
+    "color_name": "Jardin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP272002-lallee-du-roi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1328fe28-2456-453e-a779-a3c8a75cb067/BriEivTLeSUUwASIFgwO_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP286002",
+    "pattern_name": "Alhambra",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP286002-alhambra",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP260001",
+    "pattern_name": "L'atelier d'isabelle 2",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP260001-latelier-disabelle-2",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP279001",
+    "pattern_name": "Courtine",
+    "color_name": "Vegetal",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP279001-courtine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/202426a7-e2d4-4d39-83ab-09d949ed18db/yynbaB8p8jbmrHdBu30X_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP291001",
+    "pattern_name": "Alencon",
+    "color_name": "Mousse",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP291001-alencon",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/20c66cc2-f5d0-4ec4-b4f6-56d6f73ddb94/JJMEJgfj0lPaoupaBGBR_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP276001",
+    "pattern_name": "Domaine royal",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP276001-domaine-royal",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP256001",
+    "pattern_name": "Frida",
+    "color_name": "Soleil",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP256001-frida",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/276357f4-5516-4528-adec-234f823b479a/Dgb92J3WhHSOa7hbQM9R_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP269004",
+    "pattern_name": "Tilly",
+    "color_name": "Nocturne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP269004-tilly",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/28b3413b-cfe7-4cd5-95be-c53d8caaf469/JaviJz1SWTf0QT5MN2ff_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP270003",
+    "pattern_name": "Belle de provence",
+    "color_name": "Emeraude",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP270003-belle-de-provence",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP254001",
+    "pattern_name": "Cactus",
+    "color_name": "Nacre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP254001-cactus",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2e2ed94d-ebca-4991-b032-77c1a84ee4ca/b2qp3SSSogAFpjbkDrF2_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP289001",
+    "pattern_name": "Harcourt",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP289001-harcourt",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2e898bee-4fce-4dff-b4a7-62f01f253c59/6wz8AzSynYnQ7IN6MoaU_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP285002",
+    "pattern_name": "Le verger enchante",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP285002-le-verger-enchante",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3051a548-33e4-4bfb-ba54-98a1dca80189/wkVGKAqXermxEqsKV7WG_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP264001",
+    "pattern_name": "Sceaux",
+    "color_name": "Romantique",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP264001-sceaux",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/30e39e9e-33ce-4bed-9104-522557a2cb7e/OjzQTU7H178EaLE6P2HT_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP271001",
+    "pattern_name": "L'allee du roi flock",
+    "color_name": "Travertin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP271001-lallee-du-roi-flock",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3152081e-650a-49d7-a0dd-9940ac45802b/55CCwc1PY9nTJ8OaBOIx_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP263002",
+    "pattern_name": "Youth",
+    "color_name": "Orangerie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP263002-youth",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/38233a56-9106-487d-894b-23f04ea5ed32/VI8qQ0DFv8sm7l4M0Nx0_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP289003",
+    "pattern_name": "Harcourt",
+    "color_name": "Carmin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP289003-harcourt",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3a077868-0074-4463-b6d1-a07a6eb386da/jDPfwOOVdGMSS2HZnl4n_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP268002",
+    "pattern_name": "Les grenades",
+    "color_name": "Sauge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP268002-les-grenades",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3e305259-f236-4a38-bc96-127c6c0a51a3/n9zfy1hcfEjcuXs0qUYp_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP268003",
+    "pattern_name": "Les grenades",
+    "color_name": "Indigo",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP268003-les-grenades",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4116d6b7-efb7-4c83-b9fb-99bbc02fbed5/jKsf9z49VL5I1yKrMzfh_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP287001",
+    "pattern_name": "Cerisy",
+    "color_name": "Neige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP287001-cerisy",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/493e9b07-0609-411e-9faf-bedabf87489b/6XvXYmvEZr4CFcMw7oET_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP263001",
+    "pattern_name": "Youth",
+    "color_name": "Cafe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP263001-youth",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/504f9f32-064f-4283-9ec7-a2876a87c608/ry4IVfdhsCJ1NUvSfe79_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP281002",
+    "pattern_name": "Charmes",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP281002-charmes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/50a9fcb1-a48a-4f01-ba6c-1120e74d21d1/19l79hME9rYOh2IPuwb0_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP262002",
+    "pattern_name": "Viva la vida",
+    "color_name": "Riviere",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP262002-viva-la-vida",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP267001",
+    "pattern_name": "Sous la verriere",
+    "color_name": "Argile",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP267001-sous-la-verriere",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/551a767d-0444-434f-b4f1-e2554d0f66bd/tEgD23OVH5guBpNO3Zz6_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP251001",
+    "pattern_name": "Sinularia",
+    "color_name": "Argile",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP251001-sinularia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5a830ed8-06a9-409c-832d-3cd07bf28cbb/vNiUdoW9zSU7ZGJ2N0dp_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP252001",
+    "pattern_name": "Noisette",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP252001-noisette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP108001",
+    "pattern_name": "Parterre",
+    "color_name": "Jardin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP108001-parterre",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/605d1e39-6dfd-403d-9a4b-4b832b207261/IAcfLwXMS5xc1M7figTv_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP257002",
+    "pattern_name": "Happiness",
+    "color_name": "Verger",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP257002-happiness",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP281001",
+    "pattern_name": "Charmes",
+    "color_name": "Galet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP281001-charmes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/63cab3b2-2f54-44de-b968-e690ea4b7cc9/iQZP7WkQzeGY6WcMzX2k_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP293001",
+    "pattern_name": "Les fontainiers",
+    "color_name": "Fusain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP293001-les-fontainiers",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6456158e-a4d2-4585-9682-ea4ed46f96df/ZAkI70ySKcubhsNxJUYh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP280001",
+    "pattern_name": "Le clos du roi",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP280001-le-clos-du-roi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/645dcfb8-1b61-499e-a8b2-8fa6985d419d/Ra5iqMgb4HSKPVmjiLWS_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP269003",
+    "pattern_name": "Tilly",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP269003-tilly",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6ba35144-b148-4296-a333-77851f7dc731/en1XoEofn8EcIMznXAsi_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP251002",
+    "pattern_name": "Sinularia",
+    "color_name": "Eau",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP251002-sinularia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6bafd666-96e7-47a0-8768-3774242273ca/gBUaab21AxGPn0KyPdIx_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP257001",
+    "pattern_name": "Happiness",
+    "color_name": "Dune",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP257001-happiness",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP264003",
+    "pattern_name": "Sceaux",
+    "color_name": "Nuit",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP264003-sceaux",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/753840b8-5f30-46ec-9c40-620b674f5e3b/YlWfiWk7cfBPmkyiJriN_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP254003",
+    "pattern_name": "Cactus",
+    "color_name": "Graphite",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP254003-cactus",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7a9bcca7-4ee1-40e3-be0d-bf11ffff5fc3/SY4FtDfNqc8kBSGWeBW9_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP273001",
+    "pattern_name": "Les jardins de versailles",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP273001-les-jardins-de-versailles",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7bea3250-5595-4e1e-93e9-f4a3e233f23e/IOW7T4WQRLO7zOsZV3dt_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP267002",
+    "pattern_name": "Sous la verriere",
+    "color_name": "Fusain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP267002-sous-la-verriere",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/82d76743-b52b-40c1-b1ba-9e35c8efcbd4/dkDSVL3SeqWyExWEcCRt_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP272003",
+    "pattern_name": "L'allee du roi",
+    "color_name": "Epinard",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP272003-lallee-du-roi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/83556aa6-f0da-435d-8aff-b9279b003b77/ZcT7rb9BrQApsvzskZ9M_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP259001",
+    "pattern_name": "Macao",
+    "color_name": "Macao",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP259001-macao",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8631ea04-fc23-4c32-a789-7b372e8229e3/5848mk6NjAj5us5RnkxS_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP264002",
+    "pattern_name": "Sceaux",
+    "color_name": "Lac",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP264002-sceaux",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8a51c505-c9e0-4c8c-95c5-6f23f03dfd87/qTGR2Nm5mR9XDNBpoNmM_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP285001",
+    "pattern_name": "Le verger enchante",
+    "color_name": "Matin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP285001-le-verger-enchante",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8c2eddd7-ff9f-41fa-ae41-eabad4b3a314/jRmAgXYvWe3UgTT6v0js_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP250001",
+    "pattern_name": "Cancun",
+    "color_name": "Terre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP250001-cancune",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP209001",
+    "pattern_name": "Izamal",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP209001-izamal",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP287002",
+    "pattern_name": "Cerisy",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP287002-cerisy",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/968d81fb-c8cc-47f4-b441-029b3c492f63/Lcj3dKenGLVbOL3lHMQ8_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP262001",
+    "pattern_name": "Viva la vida",
+    "color_name": "Cafe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP262001-viva-la-vida",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP254002",
+    "pattern_name": "Cactus",
+    "color_name": "Or",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP254002-cactus",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/97d2d497-827a-4bb2-82f2-078341222344/RA8hnGnqwnbdQNbjxDO2_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP278001",
+    "pattern_name": "Fantaisie tropicale",
+    "color_name": "Vegetal",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP278001-fantaisie-tropicale",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP261002",
+    "pattern_name": "Casa",
+    "color_name": "Graphite",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP261002-casa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9989b2ee-3b15-4e88-a2f0-e958cf729174/sbALfznlhI5JfficPKXF_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP252003",
+    "pattern_name": "Noisette",
+    "color_name": "Soleil",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP252003-noisette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP286001",
+    "pattern_name": "Alhambra",
+    "color_name": "Dune",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP286001-alhambra",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP279002",
+    "pattern_name": "Courtine",
+    "color_name": "Fin D'Ete",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP279002-courtine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a27abd46-fb96-4915-8f89-55a1390839e7/G8HAp8wwr6YwnsjDnX7f_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP258001",
+    "pattern_name": "Plisse plumes",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP258001-plisse-plumes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a34919d7-ee31-4e94-bba4-f104c2812d73/SZkz19YbeIjUowETGwq7_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP248001",
+    "pattern_name": "Palette",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP248001-palette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP249001",
+    "pattern_name": "Bebelle",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP249001-bebelle",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/af25491f-f1d4-47ab-854f-25f989bf5adb/bLIFU6JiaG3iTpvFJgWs_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP269002",
+    "pattern_name": "Tilly",
+    "color_name": "Sauge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP269002-tilly",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b14e1f89-c94e-4ff1-8b40-ba1cab9963e0/CIBfu2mhZX8YpGhz9Nba_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP282001",
+    "pattern_name": "L'herbier du jardin",
+    "color_name": "Prairie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP282001-lherbier-du-jardin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP272001",
+    "pattern_name": "L'allee du roi",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP272001-lallee-du-roi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/beec07f4-cc33-471e-b587-f2520bafce87/E4ZwsPtrcv59tvvwb2wq_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP281003",
+    "pattern_name": "Charmes",
+    "color_name": "Ocre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP281003-charmes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/bf5b2ec0-597a-42b0-a520-7b8cf47a8906/MD5eyJ1rXqcGJe2P4zlL_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP275001",
+    "pattern_name": "Les allees de marly",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP275001-les-allees-de-marly",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP287003",
+    "pattern_name": "Cerisy",
+    "color_name": "Argile",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP287003-cerisy",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c8ad6d0c-a99d-49e0-9f8e-3dde41aa5512/ID59mDaHq0Phnw3TczLo_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP269001",
+    "pattern_name": "Tilly",
+    "color_name": "Or",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP269001-tilly",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ca0bc95c-16ba-40c7-ae6c-a11289c78161/ZKQZIW6BFSM3ykNHzD4U_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP291003",
+    "pattern_name": "Alencon",
+    "color_name": "Riviere",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP291003-alencon",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cf80eee3-ce36-4c56-8af0-dea8afd2d840/MVu2CtCd4lQoLgQCkW02_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP252002",
+    "pattern_name": "Noisette",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP252002-noisette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP274001",
+    "pattern_name": "Les topiaires",
+    "color_name": "Sauge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP274001-les-topiaires",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP274002",
+    "pattern_name": "Les topiaires",
+    "color_name": "Jardin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP274002-les-topiaires",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP266001",
+    "pattern_name": "Fleurs de pommiers",
+    "color_name": "Fleurs De Pommiers",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP266001-fleurs-de-pommiers",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP250002",
+    "pattern_name": "Cancun",
+    "color_name": "Jungle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP250002-cancune",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP289002",
+    "pattern_name": "Harcourt",
+    "color_name": "Moutarde",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP289002-harcourt",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/dc123e31-15a3-4ffd-968f-4e49a5b0e212/e8uwXpm04CG6frPX3EiR_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP270002",
+    "pattern_name": "Belle de provence",
+    "color_name": "Prairie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP270002-belle-de-provence",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP284002",
+    "pattern_name": "Les quatre potagers",
+    "color_name": "Vegetal",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP284002-les-quatre-potagers",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP291002",
+    "pattern_name": "Alencon",
+    "color_name": "Foret",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP291002-alencon",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ed855c7b-8a74-4bfc-a641-d415a7eeac14/R8K3yCoLzus4E8AAFUZv_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP283001",
+    "pattern_name": "Fleurs de guise",
+    "color_name": "Verdure",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP283001-fleurs-de-guise",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP251003",
+    "pattern_name": "Sinularia",
+    "color_name": "Feu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP251003-sinularia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/efe51df2-4597-4c12-937c-40c46a0d842a/GSD60hQqEvSgYcBHBGuU_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP266002",
+    "pattern_name": "Fleurs de pommiers",
+    "color_name": "Fleurs De Pommiers",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP266002-fleurs-de-pommiers",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP255001",
+    "pattern_name": "Savane",
+    "color_name": "Dune",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP255001-savane",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f41980c1-d602-473f-85e8-8c9216a6f736/veiRWr0X2enjeBfXk64C_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP255002",
+    "pattern_name": "Savane",
+    "color_name": "Jungle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP255002-savane",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f437ccb1-6e81-4712-b95d-f26d503b8a77/UrQDRIflYtZ8aAOPBhRk_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP268001",
+    "pattern_name": "Les grenades",
+    "color_name": "Ocre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP268001-les-grenades",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fe1b7fe6-a8a5-4fdd-a61a-48be47e69034/pxVIIzHNvp5qkPWUFEmT_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP253001",
+    "pattern_name": "Les pivoines",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP253001-les-pivoines",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP225001",
+    "pattern_name": "Les feuillages",
+    "color_name": "Boreal",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP225001-les-feuillages",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP219002",
+    "pattern_name": "Boiserie",
+    "color_name": "Grege",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP219002-boiserie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP226004",
+    "pattern_name": "Neva",
+    "color_name": "Argile",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP226004-neva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP226002",
+    "pattern_name": "Neva",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP226002-neva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP245001",
+    "pattern_name": "Les cabosses",
+    "color_name": "Blond",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP245001-les-cabosses",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP208001",
+    "pattern_name": "Before spring",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP208001-before-spring",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP219005",
+    "pattern_name": "Boiserie",
+    "color_name": "Bouleau",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP219005-boiserie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP219004",
+    "pattern_name": "Boiserie",
+    "color_name": "Lichen",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP219004-boiserie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP219001",
+    "pattern_name": "Boiserie",
+    "color_name": "Corde",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP219001-boiserie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP227001",
+    "pattern_name": "Mora",
+    "color_name": "Denim",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP227001-mora",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/27f37ad2-f226-4a05-ade5-fc0e8fb9fc23/TqlBrIPAumKVwrneXsjx_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP203001",
+    "pattern_name": "Le chemin des etoiles",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP203001-le-chemin-des-etoiles",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/29a510c4-b02c-44b1-a5ee-81238c2b074a/z9gGOuPnZh8S9Fp3826y_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP216001",
+    "pattern_name": "Gustaf",
+    "color_name": "Boreal",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP216001-gustaf",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2d6b878e-c698-4510-ba91-f9ca7d1d3afd/42csJ48AKjshE1i8NlTk_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP224001",
+    "pattern_name": "Quilt",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP224001-quilt",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP232001",
+    "pattern_name": "Olivia",
+    "color_name": "Ble",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP232001-olivia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/31542c37-1a67-46c5-b3cd-5f443ef5f914/3bXN403yS3iCBdJNhSgJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP241001",
+    "pattern_name": "La vallee des dragons",
+    "color_name": "Ble",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP241001-la-vallee-des-dragons",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP217002",
+    "pattern_name": "Rosa",
+    "color_name": "Grisaille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP217002-rosa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3c56ef40-037d-4aff-8b1e-47628d6b7025/dUcqCJSEsd1xDm3Ayjzp_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP211001",
+    "pattern_name": "Fleurs de givre",
+    "color_name": "Azur",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP211001-fleurs-de-givre",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP636003",
+    "pattern_name": "Le jardin du palais",
+    "color_name": "Ivoire",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP636003-le-jardin-du-palais",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3e987e23-20b0-476a-b8ff-9421d4f245f5/hdD2cK4R1LCAQX0Ez8bP_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP212001",
+    "pattern_name": "Fleurs de lumiere",
+    "color_name": "Lagon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP212001-fleurs-de-lumiere",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP006004",
+    "pattern_name": "Les anemones",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP006004-les-anemones",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP231001",
+    "pattern_name": "Emil",
+    "color_name": "Vanille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP231001-emil",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/499c2c19-2849-4b4d-a62e-f270a30c0e25/djbwtI3gmQSfDoBEps4e_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP230001",
+    "pattern_name": "Primadonna",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP230001-primadonna",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP207001",
+    "pattern_name": "Birds traffic",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP207001-birds-traffic",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP205002",
+    "pattern_name": "Le monde parall'aile",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP205002-le-monde-parallaile",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP226006",
+    "pattern_name": "Neva",
+    "color_name": "Ficelle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP226006-neva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP228001",
+    "pattern_name": "Pre d'ete",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP228001-pre-dete-nacre",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5d35b785-1e5a-48d4-a81b-b5efbb75ac48/cmX95H5PYaSY96w9wY5A_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP222001",
+    "pattern_name": "Pre d'ete nacre",
+    "color_name": "Glacier",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP222001-pre-dete",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5fdd4a02-62c6-4ad0-94ee-361e627ff528/GZKYsuvUsrlbPkFbws0y_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP202001",
+    "pattern_name": "Le voyage eternel",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP202001-le-voyage-eternel",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP227002",
+    "pattern_name": "Mora",
+    "color_name": "Rouge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP227002-mora",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/65362340-0554-47fc-ac26-c6df7844cc1e/f1WaLe4K5GgLDYwZZ7LR_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP240002",
+    "pattern_name": "Baltique",
+    "color_name": "Chardon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP240002-savane",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP240003",
+    "pattern_name": "Baltique",
+    "color_name": "Bleuet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP240003-savane",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP069005",
+    "pattern_name": "Ceylan",
+    "color_name": "The",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP069005-ceylan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP220001",
+    "pattern_name": "Bjorn",
+    "color_name": "Citron",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP220001-bjorn",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP473003",
+    "pattern_name": "Yangzi",
+    "color_name": "Avoine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP473003-yangzi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP217003",
+    "pattern_name": "Rosa",
+    "color_name": "Lagon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP217003-rosa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/79c54429-e302-4b80-ad06-a1614a0de49e/HmMniwNxiuXM3OBYGT1v_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP206001",
+    "pattern_name": "Crossroads",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP206001-crossroads",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7a16a537-d351-454a-85c0-23942493d3be/0Il2cSlyGrEBlYVbjVan_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP236001",
+    "pattern_name": "Cote d'opale",
+    "color_name": "Blond",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP236001-cote-dopale",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP218001",
+    "pattern_name": "Decor scandinave",
+    "color_name": "Lichen",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP218001-decor-scandinave",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP217004",
+    "pattern_name": "Rosa",
+    "color_name": "Abricot",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP217004-rosa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7ca68b50-28a9-49d3-9ddc-89fe94a8ba92/tRiaAHvRQEyNhlRIfV7f_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP247001",
+    "pattern_name": "La girafe du carrousel",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP247001-la-girafe-du-carrousel",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7e52654c-aadd-470c-9150-52352eb30486/cNPWcnhnME8tZyXc8Gu5_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP242001",
+    "pattern_name": "Les sablons",
+    "color_name": "Galet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP242001-les-sablons",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP495004",
+    "pattern_name": "Happy monkey",
+    "color_name": "Argile",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP495004-happy-monkey",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP226001",
+    "pattern_name": "Neva",
+    "color_name": "Petale",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP226001-neva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP235001",
+    "pattern_name": "Arbres et sous bois",
+    "color_name": "Bouleau",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP235001-arbres-et-sous-bois",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP565005",
+    "pattern_name": "Tampa",
+    "color_name": "Brume",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP565005-tampa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP786006",
+    "pattern_name": "Arlesienne",
+    "color_name": "Porcelaine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP786006-arlesienne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP433002",
+    "pattern_name": "Masai mara",
+    "color_name": "Oasis",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP433002-masai-mara",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP227004",
+    "pattern_name": "Mora",
+    "color_name": "Kaki",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP227004-mora",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/87802ed3-14e9-4bbe-8720-ddfb3598ba69/mpNzjjr2pGs6VpApDF3v_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP234001",
+    "pattern_name": "Mitake",
+    "color_name": "Mitake",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP234001-mitake",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP787005",
+    "pattern_name": "Fleurs de corail",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP787005-fleurs-de-corail",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP217001",
+    "pattern_name": "Rosa",
+    "color_name": "Fruits Rouges",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP217001-rosa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/97b36bb4-e5bf-4836-8885-d3969c59fd8d/GYXdzFgCYqynctb0bY6a_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP054004",
+    "pattern_name": "Au palais petit",
+    "color_name": "Chantilly",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP054004-au-palais",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP310005",
+    "pattern_name": "Jardin de mysore",
+    "color_name": "Nuage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP310005-jardin-de-mysore",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP239001",
+    "pattern_name": "Kiwis",
+    "color_name": "Kiwis",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP239001-kiwis",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP205001",
+    "pattern_name": "Le monde parall'aile",
+    "color_name": "Or",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP205001-le-monde-parallaile",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP233001",
+    "pattern_name": "Arty nacre",
+    "color_name": "Lait D'Amande",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP233001-arty-nacre",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP227003",
+    "pattern_name": "Mora",
+    "color_name": "Fusain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP227003-mora",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a85296f6-01e3-4358-899b-91fc0702ea0a/vrpYCVxlZn1c8IATpzvq_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP772005",
+    "pattern_name": "Biot",
+    "color_name": "Mineral",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP772005-biot",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP223001",
+    "pattern_name": "Dalecarlie",
+    "color_name": "Azur",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP223001-dalecarlie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/af20d98f-bbd3-449a-8bc1-a6a396c6b986/b4BjCg0EWrCbwq9bP63r_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP204001",
+    "pattern_name": "Game of love",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP204001-game-of-love",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP494002",
+    "pattern_name": "Bonsai",
+    "color_name": "Lait D'Amande",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP494002-bonsai",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP219006",
+    "pattern_name": "Boiserie",
+    "color_name": "Petale",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP219006-boiserie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP226003",
+    "pattern_name": "Neva",
+    "color_name": "Aqua",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP226003-neva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP213001",
+    "pattern_name": "L'arbre magique",
+    "color_name": "Matin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP213001-larbre-magique",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP229001",
+    "pattern_name": "Midsommar",
+    "color_name": "Opale",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP229001-midsomar",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c119a401-9022-4605-94fd-3c3a0d6e6adb/UYS4gMWXbG2aOXhjoknl_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP770005",
+    "pattern_name": "Les singes savants",
+    "color_name": "Porcelaine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP770005-les-singes-savants",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP481004",
+    "pattern_name": "Magellan",
+    "color_name": "Nuage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP481004-magellan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP220002",
+    "pattern_name": "Bjorn",
+    "color_name": "Cerise",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP220002-bjorn",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP238001",
+    "pattern_name": "Le repos du toucan",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP238001-le-repos-du-toucan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP237001",
+    "pattern_name": "Cahuita",
+    "color_name": "Corde",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP237001-cahuita",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP229002",
+    "pattern_name": "Midsommar",
+    "color_name": "Lagon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP229002-midsomar",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/db1fdd46-39d4-4855-bc53-5db0de82234c/r80jZYwsnSNK3SmwNqjl_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP219003",
+    "pattern_name": "Boiserie",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP219003-boiserie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP226005",
+    "pattern_name": "Neva",
+    "color_name": "Citron",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP226005-neva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP246001",
+    "pattern_name": "Minihic",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP246001-minihic",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP229003",
+    "pattern_name": "Midsommar",
+    "color_name": "Boreal",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP229003-midsomar",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f493e5fb-b64a-4040-bfae-9e05e9a32bfb/l2LTMU0Y9I5JxNEIZFtS_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP223002",
+    "pattern_name": "Dalecarlie",
+    "color_name": "Craie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP223002-dalecarlie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f5d6aebe-8672-484a-ad19-75b6b2efc18f/HFyyXOnvaKYi135Ciawo_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP243001",
+    "pattern_name": "Les azalees",
+    "color_name": "Grege",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP243001-les-azalees",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP859005",
+    "pattern_name": "Valbonne",
+    "color_name": "Craie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP859005-valbonne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP240001",
+    "pattern_name": "Baltique",
+    "color_name": "Groseille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP240001-savane",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP221001",
+    "pattern_name": "Mariefred",
+    "color_name": "Boudoir",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP221001-mariefred",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP214001",
+    "pattern_name": "Bloomer",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP214001-blommer",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP214002",
+    "pattern_name": "Bloomer",
+    "color_name": "Cumin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP214002-blommer",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP215001",
+    "pattern_name": "Nordic",
+    "color_name": "Caramel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP215001-nordic",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/78bd1f22-56be-420d-a7b1-4594cdded061/scQiaJnRb01w1D1Qaqd7_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP215002",
+    "pattern_name": "Nordic",
+    "color_name": "Sauge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP215002-nordic",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/389bf7a3-6172-4a6d-89c7-6e2b897f8c31/jyWZ14YwtoshgpWx9PxS_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP140002",
+    "pattern_name": "Dordogne",
+    "color_name": "Soleil",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP140002-dordogne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP133002",
+    "pattern_name": "Benin",
+    "color_name": "Bouquet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP133002-benin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP122004",
+    "pattern_name": "Amour",
+    "color_name": "Pivoine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP122004-amour",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP126004",
+    "pattern_name": "Douro",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP126004-douro",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP136004",
+    "pattern_name": "Tamise",
+    "color_name": "Mer",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP136004-tamise",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP123001",
+    "pattern_name": "Seine",
+    "color_name": "Banquise",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP123001-seine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP135002",
+    "pattern_name": "Escaut",
+    "color_name": "Galet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP135002-escaut",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP153002",
+    "pattern_name": "Ammos",
+    "color_name": "Menthe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP153002-ammos",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0f0be919-fd74-49e1-a16f-beb1c3e2cb03/BAzT87Qfvg8rDzQ3MeWK_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP147002",
+    "pattern_name": "Sirocco",
+    "color_name": "Neige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP147002-sirocco",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0fc9126a-9f82-44ce-a922-1aea4a002a81/GonKGjh0k0F02VFi9hlE_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP137001",
+    "pattern_name": "Lys",
+    "color_name": "Peuplier",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP137001-lys",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP154001",
+    "pattern_name": "Tamaris",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP154001-tamaris",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP131003",
+    "pattern_name": "Evros",
+    "color_name": "Menthe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP131003-evros",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP134002",
+    "pattern_name": "Colorado",
+    "color_name": "Charbon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP134002-colorado",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP136002",
+    "pattern_name": "Tamise",
+    "color_name": "Miel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP136002-tamise",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP117002",
+    "pattern_name": "Solo",
+    "color_name": "Ivoire",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP117002-solo",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP120002",
+    "pattern_name": "Saloum",
+    "color_name": "Mangue",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP120002-saloum",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP150001",
+    "pattern_name": "Siwa",
+    "color_name": "Terre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP150001-siwa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2257d1b4-7218-4666-bddf-a46b8e9127dd/L4C0MgnfnXhPpAPxoNYr_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP136006",
+    "pattern_name": "Tamise",
+    "color_name": "Craie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP136006-tamise",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP101001",
+    "pattern_name": "Safari",
+    "color_name": "Ocre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP101001-safari",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/231d668d-ba7e-4396-8b86-3930879ca344/nOfngL1UAcktNtx66WTy_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP135003",
+    "pattern_name": "Escaut",
+    "color_name": "Sauge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP135003-escaut",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP127001",
+    "pattern_name": "Rio javari",
+    "color_name": "Cocktail",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP127001-rio-javari",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP139004",
+    "pattern_name": "Minette",
+    "color_name": "Mer",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP139004-minette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP117003",
+    "pattern_name": "Solo",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP117003-solo",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP156004",
+    "pattern_name": "Les dunes",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP156004-les-dunes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/26e6c2ce-bf67-40ee-adc4-118dd5b2ff34/1LHRMLKuAemv7RPFEjff_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP151001",
+    "pattern_name": "Borkou",
+    "color_name": "Desert",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP151001-borkou",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/28cd8607-ca7c-4245-a401-a0c02c15ad7c/SOqGyeTQs0SO7ZXNNwCU_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP158001",
+    "pattern_name": "Kasbah",
+    "color_name": "Soleil",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP158001-kasbah",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/30362a82-4372-44cf-81bb-a8c7696c49f6/1yqcLdZ26yeziSLsUWzO_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP134001",
+    "pattern_name": "Colorado",
+    "color_name": "Indigo",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP134001-colorado",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP126002",
+    "pattern_name": "Douro",
+    "color_name": "Terre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP126002-douro",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP147001",
+    "pattern_name": "Sirocco",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP147001-sirocco",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3622f401-b577-4221-9ffc-7fb349e3a3ab/2TrTKQ0rtzyLTkPcbeAM_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP132001",
+    "pattern_name": "Caprus",
+    "color_name": "Lagon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP132001-caprus",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP144001",
+    "pattern_name": "Agadez",
+    "color_name": "Ecume",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP144001-agadez",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3848db71-900a-49f7-a3e6-9f07762852a1/zuJ4F7Zirneou5Q8tGlx_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP118002",
+    "pattern_name": "Columbia",
+    "color_name": "Seigle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP118002-columbia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP156003",
+    "pattern_name": "Les dunes",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP156003-les-dunes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3ca46ffa-58ae-4601-bb58-42880a7ba58f/GkiZtTkhJphoZsYVwqZH_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP128002",
+    "pattern_name": "Danube",
+    "color_name": "Plage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP128002-danube",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP133001",
+    "pattern_name": "Benin",
+    "color_name": "Cerise",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP133001-benin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP158002",
+    "pattern_name": "Kasbah",
+    "color_name": "Mer",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP158002-kasbah",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4e13e740-17bf-4bc0-99ab-a3721c0a8fb6/OZpWwyjKrAja4u0BYWvC_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP124004",
+    "pattern_name": "Detroit",
+    "color_name": "Chamallow",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP124004-detroit",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP152003",
+    "pattern_name": "Agafay",
+    "color_name": "Terracotta",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP152003-agafay",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4f533734-f1da-4af2-a550-b0a5582a0909/8oGFwtmJTc547adwHkri_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP137002",
+    "pattern_name": "Lys",
+    "color_name": "Ble",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP137002-lys",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP155001",
+    "pattern_name": "Bedouins",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP155001-bedouins",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5fc5718f-1170-4715-a234-b7f08e84aa60/862yXexFKiRKwpbP40Tv_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP140001",
+    "pattern_name": "Dordogne",
+    "color_name": "Bois",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP140001-dordogne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP135001",
+    "pattern_name": "Escaut",
+    "color_name": "Petale",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP135001-escaut",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP116002",
+    "pattern_name": "Nil",
+    "color_name": "Sahara",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP116002-nil",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP139003",
+    "pattern_name": "Minette",
+    "color_name": "Olive",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP139003-minette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP124003",
+    "pattern_name": "Detroit",
+    "color_name": "Cactus",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP124003-detroit",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP125001",
+    "pattern_name": "Oussouri",
+    "color_name": "Ocean",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP125001-oussouri",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP127002",
+    "pattern_name": "Rio javari",
+    "color_name": "Argile",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP127002-rio-javari",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP150002",
+    "pattern_name": "Siwa",
+    "color_name": "Azur",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP150002-siwa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6ef488e4-2927-4db7-9a78-4ad6f3ad95af/GzNr8sVICHfQzbPY5Z2S_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP116001",
+    "pattern_name": "Nil",
+    "color_name": "Coquillage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP116001-nil",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP159001",
+    "pattern_name": "L'explorateur",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP159001-lexplorateur",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/719ab43d-cb99-4a1f-9fcd-5ba4b434be21/S6MpMXrgHnwzXTgBvQV7_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP119001",
+    "pattern_name": "Kikori",
+    "color_name": "Cocktail",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP119001-kikori",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP136001",
+    "pattern_name": "Tamise",
+    "color_name": "Noisette",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP136001-tamise",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP145001",
+    "pattern_name": "La source",
+    "color_name": "Dune",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP145001-la-source",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP131002",
+    "pattern_name": "Evros",
+    "color_name": "Citron",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP131002-evros",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP117004",
+    "pattern_name": "Solo",
+    "color_name": "Aube",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP117004-solo",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP133003",
+    "pattern_name": "Benin",
+    "color_name": "Ocean",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP133003-benin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP123003",
+    "pattern_name": "Seine",
+    "color_name": "Ebene",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP123003-seine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP121004",
+    "pattern_name": "Angara",
+    "color_name": "Cactus",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP121004-angara",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP149002",
+    "pattern_name": "Wahiba",
+    "color_name": "The",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP149002-wahiba",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7e577d27-3289-4da8-a6f1-0d7f10ff9d4a/blYBj4NMh7cCUr4ceM1F_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP117005",
+    "pattern_name": "Solo",
+    "color_name": "Pistache",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP117005-solo",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP118001",
+    "pattern_name": "Columbia",
+    "color_name": "Epices",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP118001-columbia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP137003",
+    "pattern_name": "Lys",
+    "color_name": "Rose",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP137003-lys",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP153003",
+    "pattern_name": "Ammos",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP153003-ammos",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/87c2a7e2-cfdd-49bd-b274-eed44766d001/qmNAVvUOQ41eqfEwIVxu_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP123002",
+    "pattern_name": "Seine",
+    "color_name": "Tomette",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP123002-seine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP152002",
+    "pattern_name": "Agafay",
+    "color_name": "Aqua",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP152002-agafay",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8c1143e0-3db7-477c-b7ea-2ebdad250540/0Way7F4v0LXd6zFr3oQQ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP116003",
+    "pattern_name": "Nil",
+    "color_name": "Ficelle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP116003-nil",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP136005",
+    "pattern_name": "Tamise",
+    "color_name": "Framboise",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP136005-tamise",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP149001",
+    "pattern_name": "Wahiba",
+    "color_name": "Menthe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP149001-wahiba",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a07109a9-6403-462d-b8f1-6d6e6c6753e3/1o0r7SHFQ6VEYKRVOGmA_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP135004",
+    "pattern_name": "Escaut",
+    "color_name": "Citron",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP135004-escaut",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP145002",
+    "pattern_name": "La source",
+    "color_name": "Ecorce",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP145002-la-source",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP101002",
+    "pattern_name": "Safari",
+    "color_name": "Charbon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP101002-safari",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a8f0c568-ef68-4cb9-8d2b-852282e86aec/yRWhqogTyV6BkUdrnLan_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP140003",
+    "pattern_name": "Dordogne",
+    "color_name": "Jardin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP140003-dordogne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP117006",
+    "pattern_name": "Solo",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP117006-solo",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP156002",
+    "pattern_name": "Les dunes",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP156002-les-dunes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b093f730-ae3b-4fac-98f8-c3364e011229/QY8iTvCpU1IAYJE2vfcp_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP129001",
+    "pattern_name": "Maroni",
+    "color_name": "Chocolat",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP129001-maroni",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP122002",
+    "pattern_name": "Amour",
+    "color_name": "Tilleul",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP122002-amour",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP140004",
+    "pattern_name": "Dordogne",
+    "color_name": "Herbe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP140004-dordogne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP148001",
+    "pattern_name": "Mojave",
+    "color_name": "Tonnerre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP148001-mojave",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b363e856-ee8c-4a6d-ae1b-16279d3c3743/uzJbla3zP3fRGZffqeGv_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP128001",
+    "pattern_name": "Danube",
+    "color_name": "Campagne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP128001-danube",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP146002",
+    "pattern_name": "Peninsule",
+    "color_name": "Jute",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP146002-peninsule",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP147003",
+    "pattern_name": "Sirocco",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP147003-sirocco",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c1b0c50d-c01f-42bb-be39-04067d890727/MGb4JF19b0RQLdToqOxU_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP140005",
+    "pattern_name": "Dordogne",
+    "color_name": "Lagon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP140005-dordogne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP152001",
+    "pattern_name": "Agafay",
+    "color_name": "Kaki",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP152001-agafay",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c3b36bbd-c284-4690-9140-9a05da3d5912/yFrjh9R37voiKBJpwTB1_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP122001",
+    "pattern_name": "Amour",
+    "color_name": "Fjord",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP122001-amour",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP121003",
+    "pattern_name": "Angara",
+    "color_name": "Piment",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP121003-angara",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP126001",
+    "pattern_name": "Douro",
+    "color_name": "Mais",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP126001-douro",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP126003",
+    "pattern_name": "Douro",
+    "color_name": "Lichen",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP126003-douro",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP131004",
+    "pattern_name": "Evros",
+    "color_name": "Ocean",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP131004-evros",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP124001",
+    "pattern_name": "Detroit",
+    "color_name": "Soleil",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP124001-detroit",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP125003",
+    "pattern_name": "Oussouri",
+    "color_name": "Miel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP125003-oussouri",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP154002",
+    "pattern_name": "Tamaris",
+    "color_name": "Dune",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP154002-tamaris",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP157001",
+    "pattern_name": "Ubari",
+    "color_name": "Mirage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP157001-ubari",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/df16c174-38b6-4d5f-92e9-112a8c95c30a/jhK9MjquJJwt8gMqAY2M_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP148002",
+    "pattern_name": "Mojave",
+    "color_name": "Azur",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP148002-mojave",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e043b5e5-39cd-4343-b3b4-426721cbb9d7/XRlnD9ZxTFa5LEpff4N5_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP120003",
+    "pattern_name": "Saloum",
+    "color_name": "Passion",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP120003-saloum",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP153001",
+    "pattern_name": "Ammos",
+    "color_name": "Mordore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP153001-ammos",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e541bb7f-ddd8-46e8-81e1-1aa5f2d486c5/40jqKvYh1zlY9kL4ZLiB_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP138001",
+    "pattern_name": "Mira",
+    "color_name": "Lin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP138001-mira",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP122003",
+    "pattern_name": "Amour",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP122003-amour",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP144002",
+    "pattern_name": "Agadez",
+    "color_name": "Houblon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP144002-agadez",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ea558490-3df9-430a-b850-56369a691f73/IavWU6YtMsgcUgvKaciL_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP132002",
+    "pattern_name": "Caprus",
+    "color_name": "Caramel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP132002-caprus",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP121002",
+    "pattern_name": "Angara",
+    "color_name": "Curry",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP121002-angara",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP131001",
+    "pattern_name": "Evros",
+    "color_name": "Fraise",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP131001-evros",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP136003",
+    "pattern_name": "Tamise",
+    "color_name": "Agave",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP136003-tamise",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP156001",
+    "pattern_name": "Les dunes",
+    "color_name": "Tilleul",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP156001-les-dunes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/efd2dfce-a256-41a4-83c4-04c94b4f5aff/lje1cz1HThFoyXZNX9ja_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP146001",
+    "pattern_name": "Peninsule",
+    "color_name": "Nacre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP146001-peninsule",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP120001",
+    "pattern_name": "Saloum",
+    "color_name": "Prairie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP120001-saloum",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP121001",
+    "pattern_name": "Angara",
+    "color_name": "Ocean",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP121001-angara",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP146003",
+    "pattern_name": "Peninsule",
+    "color_name": "Corde",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP146003-peninsule",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP125002",
+    "pattern_name": "Oussouri",
+    "color_name": "Fenouil",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP125002-oussouri",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP139002",
+    "pattern_name": "Minette",
+    "color_name": "Miel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP139002-minette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP124002",
+    "pattern_name": "Detroit",
+    "color_name": "Piscine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP124002-detroit",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP117001",
+    "pattern_name": "Solo",
+    "color_name": "Aurore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP117001-solo",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP139001",
+    "pattern_name": "Minette",
+    "color_name": "Framboise",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP139001-minette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP126005",
+    "pattern_name": "Douro",
+    "color_name": "Craie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP126005-douro",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP142001",
+    "pattern_name": "L'arbre du voyageur",
+    "color_name": "Vegetal",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP142001-larbre-du-voyageur",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ff34d76c-98d7-4774-92f8-827c10995341/riOf9FIMQOhdpuHvFvRf_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP482002",
+    "pattern_name": "Sur le nil",
+    "color_name": "Papyrus",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP482002-sur-le-nil",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP327005",
+    "pattern_name": "Jardin de paradis",
+    "color_name": "Coquille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP327005-jardin-de-paradis",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP093002",
+    "pattern_name": "Champ fleuri",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP093002-champ-fleuri",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP106001",
+    "pattern_name": "Hedera",
+    "color_name": "Lichen",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP106001-hedera",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP109004",
+    "pattern_name": "Daphne",
+    "color_name": "Corail",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP109004-daphne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP109001",
+    "pattern_name": "Daphne",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP109001-daphne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP096002",
+    "pattern_name": "En forêt",
+    "color_name": "Turquoise",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP096002-en-foret",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP084002",
+    "pattern_name": "Botanique",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP084002-fougeres-botaniques",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP111001",
+    "pattern_name": "Forestiere",
+    "color_name": "Elixir",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP111001-forestiere",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP099002",
+    "pattern_name": "Chance",
+    "color_name": "Herbe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP099002-chance",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP102002",
+    "pattern_name": "Nassau",
+    "color_name": "Jungle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP102002-nassau",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP088002",
+    "pattern_name": "Bois dormant",
+    "color_name": "Foret",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP088002-bois-dormant",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP105001",
+    "pattern_name": "Black tulips",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP105001-black-tulips",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP099003",
+    "pattern_name": "Chance",
+    "color_name": "Charbon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP099003-chance",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP107001",
+    "pattern_name": "Les graminees",
+    "color_name": "Herbe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP107001-cluny",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP091001",
+    "pattern_name": "Calathea",
+    "color_name": "Mousse",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP091001-calathea",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP093003",
+    "pattern_name": "Champ fleuri",
+    "color_name": "Fusain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP093003-champ-fleuri",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP109003",
+    "pattern_name": "Daphne",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP109003-daphne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP083001",
+    "pattern_name": "Jasmine",
+    "color_name": "Paille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP083001-jasmine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP110001",
+    "pattern_name": "Groseiller",
+    "color_name": "Groseiller",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP110001-groseiller",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP094001",
+    "pattern_name": "Galla",
+    "color_name": "Vert Pomme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP094001-galla",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP102003",
+    "pattern_name": "Nassau",
+    "color_name": "Lagon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP102003-nassau",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP088001",
+    "pattern_name": "Bois dormant",
+    "color_name": "Grisaille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP088001-bois-dormant",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP092002",
+    "pattern_name": "Monstera",
+    "color_name": "Jungle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP092002-monstera",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP104002",
+    "pattern_name": "Eldorado",
+    "color_name": "Foret",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP104002-eldorado",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP109002",
+    "pattern_name": "Daphne",
+    "color_name": "Mordore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP109002-daphne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP096001",
+    "pattern_name": "En forêt",
+    "color_name": "Ocre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP096001-en-foret",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP083002",
+    "pattern_name": "Jasmine",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP083002-jasmine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP095001",
+    "pattern_name": "Khao lak",
+    "color_name": "Lagon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP095001-khao-lak",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP087001",
+    "pattern_name": "Les pois de senteur",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP087001-pois-de-senteur",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP093001",
+    "pattern_name": "Champ fleuri",
+    "color_name": "Ocre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP093001-champ-fleuri",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP097001",
+    "pattern_name": "Pollen",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP097001-pollen",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP092001",
+    "pattern_name": "Monstera",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP092001-monstera",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP090001",
+    "pattern_name": "Keiko",
+    "color_name": "Lie De Vin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP090001-keiko",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP112001",
+    "pattern_name": "Bois des fees",
+    "color_name": "Bois Des Fees",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP112001-bois-des-fees",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP089002",
+    "pattern_name": "Flore",
+    "color_name": "Tropical",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP089002-flore",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP088003",
+    "pattern_name": "Bois dormant",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP088003-bois-dormant",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP084001",
+    "pattern_name": "Botanique",
+    "color_name": "Automne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP084001-fougeres-botaniques",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP094002",
+    "pattern_name": "Galla",
+    "color_name": "Rouge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP094002-galla",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP104001",
+    "pattern_name": "Eldorado",
+    "color_name": "Verdure",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP104001-eldorado",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP103001",
+    "pattern_name": "Lotus",
+    "color_name": "Or",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP103001-lotus",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP102001",
+    "pattern_name": "Nassau",
+    "color_name": "Agave",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP102001-nassau",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP098001",
+    "pattern_name": "Saint trop",
+    "color_name": "Mediterranee",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP098001-saint-trop",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP086001",
+    "pattern_name": "Ferret",
+    "color_name": "Hiver",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP086001-feret",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP106002",
+    "pattern_name": "Hedera",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP106002-hedera",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP089001",
+    "pattern_name": "Flore",
+    "color_name": "Fusain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP089001-flore",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP086002",
+    "pattern_name": "Ferret",
+    "color_name": "Ete",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP086002-feret",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP099001",
+    "pattern_name": "Chance",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP099001-chance",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP085001",
+    "pattern_name": "Rayure les pois de senteur",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP085001-provence",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP143001",
+    "pattern_name": "Paname",
+    "color_name": "Paname",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP143001-paname",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/162b7e67-5e52-4615-95da-7957e046105b/6EGjMFQNsa4jAxT2Fcl4_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "TP454001",
+    "pattern_name": "Segolene",
+    "color_name": "Porcelain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/TP454001-segolene",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2af51206-8a2b-4f8e-b51a-6c2db6e745a9/BN4W0qCdKWZgvvanrWUT_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "TP242002",
+    "pattern_name": "Pineapple leaf",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/TP242002-pineapple-leaf",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6ded2715-13ec-4c31-8724-8cb7f260d5d7/f2R2K5yBnqFNvqMyTB4G_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "TP115004",
+    "pattern_name": "Vermicelli",
+    "color_name": "Artic",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/TP115004-vermicelli",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/de1daf19-99a1-4af1-9e9a-8d74c541ff1d/vJBFpInmuMrcBiqMgW1l_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "TP340001",
+    "pattern_name": "Antoinette",
+    "color_name": "Sevres",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/TP340001-antoinette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/df7465f7-de2b-444e-9bd8-f7df1ae46ba4/KG9rtLfoEogscp5KyZuN_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "TP601002",
+    "pattern_name": "Luna",
+    "color_name": "Saxe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/TP601002-luna",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e6ce76da-9ce1-41f6-8245-8b754ca4c3f5/Es6v6OcWjKr3hIcoi802_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP082001",
+    "pattern_name": "Au palais grand",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP082001-au-palais-grand",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP081002",
+    "pattern_name": "Aelys metal",
+    "color_name": "Argent",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP081002-aelys-metal",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP045002",
+    "pattern_name": "Qinghua petit",
+    "color_name": "Nacre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP045002-qinghua",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP080002",
+    "pattern_name": "Qinghua grand",
+    "color_name": "Bleu De Chine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP080002-qinghua-grand",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP080001",
+    "pattern_name": "Qinghua grand",
+    "color_name": "Neige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP080001-qinghua-grand",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP063002",
+    "pattern_name": "Segou",
+    "color_name": "Fusain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP063002-segou",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP060001",
+    "pattern_name": "Conte merveilleux",
+    "color_name": "Or",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP060001-conte-merveilleux",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP060002",
+    "pattern_name": "Conte merveilleux",
+    "color_name": "Neige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP060002-conte-merveilleux",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP077002",
+    "pattern_name": "Grande maree",
+    "color_name": "Lagon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP077002-grande-maree",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP077001",
+    "pattern_name": "Grande maree",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP077001-grande-maree",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP077003",
+    "pattern_name": "Grande maree",
+    "color_name": "Charbon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP077003-grande-maree",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP054003",
+    "pattern_name": "Au palais petit",
+    "color_name": "Ruisseau",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP054003-au-palais",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP045001",
+    "pattern_name": "Qinghua petit",
+    "color_name": "Indigo",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP045001-qinghua",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP079002",
+    "pattern_name": "Sokone",
+    "color_name": "Savane",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP079002-sokone",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP079001",
+    "pattern_name": "Sokone",
+    "color_name": "Jungle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP079001-sokone",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP062001",
+    "pattern_name": "Efutu",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP062001-efutu",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP062002",
+    "pattern_name": "Efutu",
+    "color_name": "Cacao",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP062002-efutu",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP059002",
+    "pattern_name": "Belle lune",
+    "color_name": "Nuit",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP059002-belle-lune",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP058002",
+    "pattern_name": "Kaori",
+    "color_name": "Argile",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP058002-kaori",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP058001",
+    "pattern_name": "Kaori",
+    "color_name": "Indigo",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP058001-kaori",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP049003",
+    "pattern_name": "Suki",
+    "color_name": "Ocean",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP049003-suki",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP048004",
+    "pattern_name": "Les eventails",
+    "color_name": "Or",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP048004-les-eventails",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP068001",
+    "pattern_name": "Baya",
+    "color_name": "Argile",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP068001-baya",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP048003",
+    "pattern_name": "Les eventails",
+    "color_name": "Coquelicot",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP048003-les-eventails",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP048002",
+    "pattern_name": "Les eventails",
+    "color_name": "Indigo",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP048002-les-eventails",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP068002",
+    "pattern_name": "Baya",
+    "color_name": "Feu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP068002-baya",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP048001",
+    "pattern_name": "Les eventails",
+    "color_name": "Herbe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP048001-les-eventails",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP049002",
+    "pattern_name": "Suki",
+    "color_name": "Epice",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP049002-suki",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP059001",
+    "pattern_name": "Belle lune",
+    "color_name": "Eclipse",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP059001-belle-lune",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP049001",
+    "pattern_name": "Suki",
+    "color_name": "Galet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP049001-suki",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP034003",
+    "pattern_name": "Yelena",
+    "color_name": "Miel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP034003-yelena",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP936003",
+    "pattern_name": "Sven",
+    "color_name": "Galet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP936003-sven",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP920001",
+    "pattern_name": "Inga",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP920001-inga",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4671A01",
+    "pattern_name": "Wallpaper chateaubriand",
+    "color_name": "Cream",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4671A01-wallpaper-chateaubriand",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP109003",
+    "pattern_name": "Hankeou",
+    "color_name": "Rose",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP109003-hankeou",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP072001",
+    "pattern_name": "L'aurore",
+    "color_name": "Blond",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP072001-laurore",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP871002",
+    "pattern_name": "Les modeles",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP871002-les-modeles",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/013c67e9-f55b-4bd3-96ab-fb9dfe101d67/KfQ9sF5F58ZwZJbAsAFx_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4764003",
+    "pattern_name": "Wallpaper dandy",
+    "color_name": "Blue",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4764003-wallpaper-dandy",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP891004",
+    "pattern_name": "Papyrus",
+    "color_name": "Noir",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP891004-papyrus",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP499004",
+    "pattern_name": "Tatoo",
+    "color_name": "Noir",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP499004-tatoo",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/02110ee8-5add-445a-bda4-3be89901889c/4Yl8S2ZtVamRJF8CzRB1_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP371001",
+    "pattern_name": "Scene de campagne",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP371001-scene-de-campagne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334007",
+    "pattern_name": "Shiva",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334007-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP051002",
+    "pattern_name": "Les fleurs de cerisiers",
+    "color_name": "Nuage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP051002-les-fleurs-de-cerisiers",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP983003",
+    "pattern_name": "Tamatoa",
+    "color_name": "Cacao",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP983003-tamatoa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP314001",
+    "pattern_name": "La grande voliere",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP314001-la-grande-voliere",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP963003",
+    "pattern_name": "Oboshi",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP963003-oboshi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP516001",
+    "pattern_name": "Karma",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP516001-karma",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP112003",
+    "pattern_name": "Mikado",
+    "color_name": "Aqua",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP112003-mikado",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP108004",
+    "pattern_name": "Plumettes",
+    "color_name": "CéLadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP108004-plumettes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP024001",
+    "pattern_name": "Tyler",
+    "color_name": "Chantilly",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP024001-tyler",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4979023",
+    "pattern_name": "Wallpaper odalys",
+    "color_name": "Amazon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4979023-wallpaper-odalys",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334001",
+    "pattern_name": "Shiva",
+    "color_name": "Chantilly",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334001-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP793025",
+    "pattern_name": "Nimes",
+    "color_name": "Opale",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP793025-nimes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP587003",
+    "pattern_name": "Le printemps du mekong metal",
+    "color_name": "Or",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP587003-le-printemps-du-mekong-metal",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP032001",
+    "pattern_name": "Niamh",
+    "color_name": "Nacre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP032001-niahm",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP324010",
+    "pattern_name": "La route de la soie",
+    "color_name": "Ocre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP324010-la-route-de-la-soie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP946003",
+    "pattern_name": "Toile de nantes intisse",
+    "color_name": "Absinthe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP946003-toile-de-nantes-intisse",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP365006",
+    "pattern_name": "Pontchartrain coordonne",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP365006-pontchartrain-coordonne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP993001",
+    "pattern_name": "Porquerolles",
+    "color_name": "Mediterranee",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP993001-porquerolles",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334009",
+    "pattern_name": "Shiva",
+    "color_name": "Rouge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334009-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP075002",
+    "pattern_name": "Ikati",
+    "color_name": "Fuchsia",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP075002-ikati",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/09afd485-6174-4c96-9c7e-f6a4c73024e7/uGsdcgLHiN9nHNYdiwVS_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP648014",
+    "pattern_name": "Ernesto",
+    "color_name": "Melon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP648014-ernesto",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP807001",
+    "pattern_name": "Les petits chats de colette",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP807001-les-petits-chats-de-colette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP185001",
+    "pattern_name": "Wallpaper erevan",
+    "color_name": "Paper",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP185001-wallpaper-erevan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP754001",
+    "pattern_name": "Les fougeres",
+    "color_name": "Champagne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP754001-les-fougeres",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP870002",
+    "pattern_name": "Oka",
+    "color_name": "Boiserie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP870002-oka",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP071004",
+    "pattern_name": "Craquelin",
+    "color_name": "Jungle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP071004-craquelin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP591001",
+    "pattern_name": "Vases masqués",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP591001-vases-masques",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP009002",
+    "pattern_name": "Acropora",
+    "color_name": "Opale",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP009002-acropora",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP067002",
+    "pattern_name": "Cascade",
+    "color_name": "Ocean",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP067002-cascade",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP926001",
+    "pattern_name": "Gary",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP926001-gary",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP405016",
+    "pattern_name": "Zia",
+    "color_name": "Zinc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP405016-zia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP314001",
+    "pattern_name": "Indus tise",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP314001-indus-tise",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP203003",
+    "pattern_name": "Wallpaper bengali",
+    "color_name": "Pink",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP203003-wallpaper-bengali",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP977003",
+    "pattern_name": "Grenadier",
+    "color_name": "Outremer",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP977003-grenadier",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP160001",
+    "pattern_name": "Wallpaper les paniers fleuris",
+    "color_name": "Bleu Ancien",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP160001-wallpaper-les-paniers-fleuris",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP208003",
+    "pattern_name": "Wallpaper marquis de seignelay",
+    "color_name": "Blue/Pink",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP208003-wallpaper-marquis-de-seignelay",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP037001",
+    "pattern_name": "Aiden",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP037001-aiden",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP365002",
+    "pattern_name": "Pontchartrain coordonne",
+    "color_name": "Guimauve",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP365002-pontchartrain-coordonne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP170002",
+    "pattern_name": "Wallpaper crespieres",
+    "color_name": "Rose Ancien",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP170002-wallpaper-crespieres",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP040002",
+    "pattern_name": "Teodor",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP040002-teodor",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP014002",
+    "pattern_name": "Varaderos",
+    "color_name": "Ocean",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP014002-varaderos",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP405017",
+    "pattern_name": "Zia",
+    "color_name": "Galet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP405017-zia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP364001",
+    "pattern_name": "Les renoncules",
+    "color_name": "Petale",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP364001-les-renoncules",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP828001",
+    "pattern_name": "Pop corn",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP828001-pop-corn",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP112002",
+    "pattern_name": "Mikado",
+    "color_name": "Pivoine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP112002-mikado",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP983002",
+    "pattern_name": "Tamatoa",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP983002-tamatoa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP945003",
+    "pattern_name": "Mortagne",
+    "color_name": "Fusain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP945003-mortagne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/0fd2c07f-90e7-4faa-ab20-d40424bb98b2/rKtapDptCp8d4Sqw9Pqa_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP970001",
+    "pattern_name": "Vaima",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP970001-vaima",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP113001",
+    "pattern_name": "Floride",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP113001-floride",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP758001",
+    "pattern_name": "Les folies",
+    "color_name": "Corail",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP758001-les-folies",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP195002",
+    "pattern_name": "Coutances",
+    "color_name": "Aquamist",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP195002-coutances",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP647002",
+    "pattern_name": "Alba",
+    "color_name": "Champagne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP647002-alba",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP103005",
+    "pattern_name": "L'arbre indien",
+    "color_name": "Rouge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP103005-larbre-indien",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP363003",
+    "pattern_name": "Marigold",
+    "color_name": "Guimauve",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP363003-marigold",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP952001",
+    "pattern_name": "Camomille",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP952001-camomille",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP786004",
+    "pattern_name": "Arlesienne",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP786004-arlesienne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4979019",
+    "pattern_name": "Wallpaper odalys",
+    "color_name": "Red Green",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4979019-wallpaper-odalys",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP878002",
+    "pattern_name": "Le ballet",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP878002-le-ballet",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP975001",
+    "pattern_name": "Tikehau",
+    "color_name": "Paille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP975001-tikehau",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP640001",
+    "pattern_name": "Albertine",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP640001-albertine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP786001",
+    "pattern_name": "Arlesienne",
+    "color_name": "Noix",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP786001-arlesienne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP860001",
+    "pattern_name": "Coeurs de marie",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP860001-coeurs-de-marie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP395001",
+    "pattern_name": "Pampa",
+    "color_name": "Jais",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP395001-pampa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/15ea38a8-541f-4e79-a11d-2b9dc90e3e8f/to8KmLhihnHaaGTPo4RX_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP111003",
+    "pattern_name": "Les lions",
+    "color_name": "Lavandier",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP111003-les-lions",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP050002",
+    "pattern_name": "Kasuri",
+    "color_name": "Pluie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP050002-kasuri",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP482001",
+    "pattern_name": "Sur le nil",
+    "color_name": "Naturel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP482001-sur-le-nil",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP892003",
+    "pattern_name": "Mirage",
+    "color_name": "Ecorce",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP892003-mirage",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/183398ae-4f49-4888-9535-2c6788660ccf/ThZ7bsG32BIlIHGAlFHy_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP309001",
+    "pattern_name": "Wallpaper gisors",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP309001-wallpaper-gisors",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP793021",
+    "pattern_name": "Nimes",
+    "color_name": "Perdrix",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP793021-nimes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334020",
+    "pattern_name": "Shiva",
+    "color_name": "Citronnade",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334020-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP385001",
+    "pattern_name": "Vela",
+    "color_name": "Paille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP385001-vela",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP014003",
+    "pattern_name": "Varaderos",
+    "color_name": "Oasis",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP014003-varaderos",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP034002",
+    "pattern_name": "Yelena",
+    "color_name": "Brume",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP034002-yelena",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP975003",
+    "pattern_name": "Tikehau",
+    "color_name": "Palmier",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP975003-tikehau",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP347001",
+    "pattern_name": "Bengali-albertine",
+    "color_name": "Rouge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP347001-bengali-albertine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP185002",
+    "pattern_name": "Wallpaper erevan",
+    "color_name": "Cardinal Red",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP185002-wallpaper-erevan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP209A02",
+    "pattern_name": "Wallpaper septeuil",
+    "color_name": "Pink Red",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP209A02-wallpaper-septeuil",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP070002",
+    "pattern_name": "Graphic",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP070002-graphic",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334010",
+    "pattern_name": "Shiva",
+    "color_name": "Corail",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334010-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334012",
+    "pattern_name": "Shiva",
+    "color_name": "Jaune",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334012-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP332002",
+    "pattern_name": "Konotori",
+    "color_name": "Vert",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP332002-konotori",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP919002",
+    "pattern_name": "Liam",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP919002-liam",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP646001",
+    "pattern_name": "Aiko",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP646001-aiko",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP006002",
+    "pattern_name": "Les anemones",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP006002-les-anemones",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP981001",
+    "pattern_name": "Makemo",
+    "color_name": "Ocre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP981001-makemo",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP645001",
+    "pattern_name": "Isha",
+    "color_name": "Champagne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP645001-isha",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP517001",
+    "pattern_name": "Aloe",
+    "color_name": "Citrus",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP517001-aloe",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP193001",
+    "pattern_name": "Aquarius",
+    "color_name": "Stone",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP193001-aquarius",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP074002",
+    "pattern_name": "Tapa",
+    "color_name": "Fusain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP074002-tapa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1f9f12da-4f28-43d8-90b0-a22b0b3f72ea/L97enueRN2cn5jjnrcJ9_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP980001",
+    "pattern_name": "Rangiroa",
+    "color_name": "Terre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP980001-rangiroa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4630A04",
+    "pattern_name": "Wallpaper bananier",
+    "color_name": "Chocolate",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4630A04-wallpaper-bananier",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP656002",
+    "pattern_name": "Princesse",
+    "color_name": "Belette",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP656002-princesse",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP321001",
+    "pattern_name": "Bel ami",
+    "color_name": "Pastel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP321001-bel-ami",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP531002",
+    "pattern_name": "Tenere",
+    "color_name": "Acajou",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP531002-tenere",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP649001",
+    "pattern_name": "Catalina",
+    "color_name": "Naturel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP649001-catalina",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP863015",
+    "pattern_name": "Sofia",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP863015-sofia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP328006",
+    "pattern_name": "La comedie",
+    "color_name": "La Comedie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP328006-la-comedie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP193002",
+    "pattern_name": "Aquarius",
+    "color_name": "Sand",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP193002-aquarius",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP101004",
+    "pattern_name": "Madame tallien",
+    "color_name": "Vert Empire",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP101004-madame-tallien",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP108002",
+    "pattern_name": "Plumettes",
+    "color_name": "Rose",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP108002-plumettes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP100001",
+    "pattern_name": "Le chariot chinois",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP100001-le-chariot-chinois",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP654001",
+    "pattern_name": "Assouan",
+    "color_name": "Lin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP654001-assouan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP655001",
+    "pattern_name": "Assouan blanchi",
+    "color_name": "Naturel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP655001-assouan-blanchi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334004",
+    "pattern_name": "Shiva",
+    "color_name": "Lin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334004-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP514002",
+    "pattern_name": "Grand canyon",
+    "color_name": "Noir",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP514002-grand-canyon",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP101002",
+    "pattern_name": "Madame tallien",
+    "color_name": "Garance",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP101002-madame-tallien",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP362004",
+    "pattern_name": "Ursuline",
+    "color_name": "Vert",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP362004-ursuline",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP609001",
+    "pattern_name": "Le parc",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP609001-le-parc",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP020001",
+    "pattern_name": "Arnaud",
+    "color_name": "Perle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP020001-arnaud",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP323001",
+    "pattern_name": "Venus",
+    "color_name": "Nuage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP323001-venus",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP562003",
+    "pattern_name": "Nuages",
+    "color_name": "Mordore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP562003-nuages",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/24b1f7aa-748a-4d73-88e8-4bb639fcb976/zCfCt0R8nOFAU3i3wp4H_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP590002",
+    "pattern_name": "Ogaki",
+    "color_name": "Sepia",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP590002-ogaki",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP843002",
+    "pattern_name": "Tamanrasset",
+    "color_name": "Desert",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP843002-tamanrasset",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP652001",
+    "pattern_name": "Jake",
+    "color_name": "Naturel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP652001-jake",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP923003",
+    "pattern_name": "Suzette",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP923003-suzette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP207003",
+    "pattern_name": "Wallpaper les muses et le lion",
+    "color_name": "Antique Blue",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP207003-wallpaper-les-muses-et-le-lion",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP925001",
+    "pattern_name": "Aurelie",
+    "color_name": "Nacre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP925001-aurelie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP168003",
+    "pattern_name": "Wallpaper sans papillons",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP168003-wallpaper-sans-papillons",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP026002",
+    "pattern_name": "Natacha",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP026002-natacha",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP206003",
+    "pattern_name": "Wallpaper la fontaine",
+    "color_name": "Blue/Steel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP206003-wallpaper-la-fontaine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP370001",
+    "pattern_name": "Chantonnay",
+    "color_name": "Miel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP370001-chantonnay",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP644002",
+    "pattern_name": "Chloe",
+    "color_name": "Perle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP644002-chloe",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP937001",
+    "pattern_name": "Maud",
+    "color_name": "001",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP937001-maud",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP957002",
+    "pattern_name": "Lucille",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP957002-lucille",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4669003",
+    "pattern_name": "Wallpaper radzimir",
+    "color_name": "Ochre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4669003-wallpaper-radzimir",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP966002",
+    "pattern_name": "Castellaras",
+    "color_name": "Mexico",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP966002-castellaras",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP067001",
+    "pattern_name": "Cascade",
+    "color_name": "Soleil",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP067001-cascade",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP502001",
+    "pattern_name": "Shaman",
+    "color_name": "Black",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP502001-shaman",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP028001",
+    "pattern_name": "Petunia",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP028001-petunia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP373001",
+    "pattern_name": "Le grand genois",
+    "color_name": "Hortensia",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP373001-le-grand-genois",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP650002",
+    "pattern_name": "Melchior",
+    "color_name": "Lenaturel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP650002-melchior",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP770004",
+    "pattern_name": "Les singes savants",
+    "color_name": "Turquois",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP770004-les-singes-savants",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP109004",
+    "pattern_name": "Hankeou",
+    "color_name": "Kaki",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP109004-hankeou",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP648006",
+    "pattern_name": "Ernesto",
+    "color_name": "Nuage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP648006-ernesto",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP107004",
+    "pattern_name": "Pommes de pin",
+    "color_name": "CéLadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP107004-pommes-de-pin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP568001",
+    "pattern_name": "Fontaine et animaux barbouillage",
+    "color_name": "Noir/Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP568001-fontaine-et-animaux-barbouillage",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP472002",
+    "pattern_name": "Mako",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP472002-mako",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP324009",
+    "pattern_name": "La route de la soie",
+    "color_name": "Or",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP324009-la-route-de-la-soie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP031002",
+    "pattern_name": "Astou",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP031002-astou",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP494001",
+    "pattern_name": "Bonsai",
+    "color_name": "Pistache",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP494001-bonsai",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP573001",
+    "pattern_name": "Beau monde",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP573001-beau-monde",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP534001",
+    "pattern_name": "Coban",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP534001-coban",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP320001",
+    "pattern_name": "Mauritius",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP320001-mauritius",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/319c7d51-4ecf-4ee2-b4bd-51b0b403c17f/5NrXANIFfOmXN1GjBq0Y_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP787004",
+    "pattern_name": "Fleurs de corail",
+    "color_name": "Marine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP787004-fleurs-de-corail",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP353001",
+    "pattern_name": "Tam tam",
+    "color_name": "Ficelle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP353001-tam-tam",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/328b3da0-022b-4f42-80b5-3e25c5765910/1RJKzNyREdT4WbT7LsE5_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP424001",
+    "pattern_name": "Nubem",
+    "color_name": "Nubem",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP424001-nubem",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP336001",
+    "pattern_name": "Toile des indes",
+    "color_name": "Jaune",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP336001-toile-des-indes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP017001",
+    "pattern_name": "Le touquet",
+    "color_name": "Croisiere",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP017001-le-touquet",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4630A03",
+    "pattern_name": "Wallpaper bananier",
+    "color_name": "Olive",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4630A03-wallpaper-bananier",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP863014",
+    "pattern_name": "Sofia",
+    "color_name": "Opale",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP863014-sofia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP780001",
+    "pattern_name": "Atelier jean",
+    "color_name": "Craft",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP780001-atelier-jean",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP583001",
+    "pattern_name": "La serre aux papillons",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP583001-la-serre-aux-papillons",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334026",
+    "pattern_name": "Shiva",
+    "color_name": "Poudre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334026-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP495001",
+    "pattern_name": "Happy monkey",
+    "color_name": "Noir",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP495001-happy-monkey",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP204002",
+    "pattern_name": "Le grand corail",
+    "color_name": "Ochre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP204002-le-grand-corail",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP964002",
+    "pattern_name": "Touareg",
+    "color_name": "Desert",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP964002-touareg",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP053003",
+    "pattern_name": "Fuji",
+    "color_name": "Terre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP053003-fuji",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP300001",
+    "pattern_name": "Wallpaper la roziere - fond uni",
+    "color_name": "Origine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP300001-wallpaper-la-roziere-fond-uni",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP924002",
+    "pattern_name": "Carole",
+    "color_name": "Greige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP924002-carole",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4864004",
+    "pattern_name": "Wallpaper nakai",
+    "color_name": "Lime",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4864004-wallpaper-nakai",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP614001",
+    "pattern_name": "Perspectives imaginaires",
+    "color_name": "Mineral",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP614001-perspectives-imaginaires",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP883001",
+    "pattern_name": "Shout",
+    "color_name": "Greige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP883001-shout",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP106003",
+    "pattern_name": "Madame elisabeth",
+    "color_name": "OcéAn",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP106003-madame-elisabeth",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP024002",
+    "pattern_name": "Tyler",
+    "color_name": "Perle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP024002-tyler",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP917003",
+    "pattern_name": "James",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP917003-james",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP328001",
+    "pattern_name": "La comedie",
+    "color_name": "La Comedie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP328001-la-comedie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP003002",
+    "pattern_name": "Les maldives",
+    "color_name": "Ocean",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP003002-les-maldives",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP939003",
+    "pattern_name": "Owen",
+    "color_name": "Corde",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP939003-owen",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP489001",
+    "pattern_name": "Carriacou",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP489001-carriacou",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP912001",
+    "pattern_name": "Cherry kawasaki",
+    "color_name": "Vertdegris",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP912001-cherry-kawasaki",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3a22aba6-4311-4c08-b522-8c481d2826b6/tqfbdRrZdH0hGvGBIDG2_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP366001",
+    "pattern_name": "Les rivieres de l'indus",
+    "color_name": "Jouy",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP366001-les-rivieres-de-lindus",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP366002",
+    "pattern_name": "Les rivieres de l'indus",
+    "color_name": "Nympheas",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP366002-les-rivieres-de-lindus",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP357001",
+    "pattern_name": "Mandalay",
+    "color_name": "Hortensia",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP357001-mandalay",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP863006",
+    "pattern_name": "Sofia",
+    "color_name": "Paille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP863006-sofia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP070003",
+    "pattern_name": "Graphic",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP070003-graphic",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4566002",
+    "pattern_name": "Wallpaper marly",
+    "color_name": "Rust",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4566002-wallpaper-marly",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP026001",
+    "pattern_name": "Natacha",
+    "color_name": "Lin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP026001-natacha",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334027",
+    "pattern_name": "Shiva",
+    "color_name": "Ballerine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334027-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP181004",
+    "pattern_name": "Wallpaper sintra",
+    "color_name": "Tomate",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP181004-wallpaper-sintra",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP061001",
+    "pattern_name": "Maya",
+    "color_name": "Tropical",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP061001-maya",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP328002",
+    "pattern_name": "La comedie",
+    "color_name": "La Comedie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP328002-la-comedie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP495002",
+    "pattern_name": "Happy monkey",
+    "color_name": "Mordore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP495002-happy-monkey",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334021",
+    "pattern_name": "Shiva",
+    "color_name": "Blond",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334021-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP205004",
+    "pattern_name": "Wallpaper vermicule",
+    "color_name": "Lavender",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP205004-wallpaper-vermicule",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP841002",
+    "pattern_name": "Les rues parisiennes",
+    "color_name": "Indigo",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP841002-les-rues-parisiennes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP035001",
+    "pattern_name": "Diego",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP035001-diego",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP338001",
+    "pattern_name": "Le paravent chinois",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP338001-le-paravent-chinois",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP365003",
+    "pattern_name": "Pontchartrain coordonne",
+    "color_name": "Miel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP365003-pontchartrain-coordonne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP648002",
+    "pattern_name": "Ernesto",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP648002-ernesto",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP763002",
+    "pattern_name": "Dragons de feu",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP763002-dragons-de-feu",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/42221496-7359-477e-bd29-5755c07ab5c7/8fsdepF7PTGrQOVeGqyQ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP846003",
+    "pattern_name": "Ciel reve",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP846003-ciel-reve",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP988001",
+    "pattern_name": "La dame de fer",
+    "color_name": "Jardin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP988001-la-dame-de-fer",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP446001",
+    "pattern_name": "Leo",
+    "color_name": "Noir",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP446001-leo",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP888001",
+    "pattern_name": "Hatchepsout",
+    "color_name": "Fleurdelotus",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP888001-hatchepsout",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP071003",
+    "pattern_name": "Craquelin",
+    "color_name": "Aqua",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP071003-craquelin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP372001",
+    "pattern_name": "Petits appartements de la reine",
+    "color_name": "Jouy",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP372001-petits-appartements-de-la-reine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP012002",
+    "pattern_name": "Cancale",
+    "color_name": "Bigorneau",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP012002-cancale",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP010001",
+    "pattern_name": "La desirade",
+    "color_name": "Palmeraie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP010001-la-desirade",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP840002",
+    "pattern_name": "Nids jolis",
+    "color_name": "Prairie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP840002-nids-jolis",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP104002",
+    "pattern_name": "Paradis perdu",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP104002-paradis-perdu",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP033001",
+    "pattern_name": "Aziz",
+    "color_name": "Nacre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP033001-aziz",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP789003",
+    "pattern_name": "Patio exotique",
+    "color_name": "Fusain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP789003-patio-exotique",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP031001",
+    "pattern_name": "Astou",
+    "color_name": "Neige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP031001-astou",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP987001",
+    "pattern_name": "Mamore",
+    "color_name": "Riviere",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP987001-mamore",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP168002",
+    "pattern_name": "Wallpaper sans papillons",
+    "color_name": "Jaune",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP168002-wallpaper-sans-papillons",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP209A03",
+    "pattern_name": "Wallpaper septeuil",
+    "color_name": "Antique Blue",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP209A03-wallpaper-septeuil",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP065001",
+    "pattern_name": "Coconut",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP065001-coconut",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP948001",
+    "pattern_name": "Maisons et jardins",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP948001-maisons-et-jardins",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP522001",
+    "pattern_name": "L'esterel",
+    "color_name": "Agave",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP522001-lesterel",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4396001",
+    "pattern_name": "Wallpaper panthere",
+    "color_name": "Natural",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4396001-wallpaper-panthere",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP428001",
+    "pattern_name": "Arlequins",
+    "color_name": "Vintage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP428001-arlequins",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP646002",
+    "pattern_name": "Aiko",
+    "color_name": "Champagne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP646002-aiko",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP100002",
+    "pattern_name": "Le chariot chinois",
+    "color_name": "Vert Du Nil",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP100002-le-chariot-chinois",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP566002",
+    "pattern_name": "Totem",
+    "color_name": "Negatif",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP566002-totem",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP782002",
+    "pattern_name": "Vrillette",
+    "color_name": "Charbon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP782002-vrillette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP951002",
+    "pattern_name": "Foret d'eden",
+    "color_name": "Nocturne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP951002-foret-deden",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP919001",
+    "pattern_name": "Liam",
+    "color_name": "Ivoire",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP919001-liam",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP352001",
+    "pattern_name": "Coulonges semis",
+    "color_name": "Hortensia",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP352001-coulonges-semis",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP923001",
+    "pattern_name": "Suzette",
+    "color_name": "Chantilly",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP923001-suzette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP356002",
+    "pattern_name": "Villandry",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP356002-villandry",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP320002",
+    "pattern_name": "Mauritius",
+    "color_name": "Nuit",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP320002-mauritius",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4d2a9406-5b1a-4c02-80d7-6bc8e377adb1/IBAJiIK8SPLItTgX9zk3_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP350001",
+    "pattern_name": "Voile de genes",
+    "color_name": "Emeraude",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP350001-voile-de-genes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP300004",
+    "pattern_name": "Wallpaper la roziere - fond uni",
+    "color_name": "Epice",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP300004-wallpaper-la-roziere-fond-uni",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP014001",
+    "pattern_name": "Varaderos",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP014001-varaderos",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP777001",
+    "pattern_name": "Alpilles",
+    "color_name": "Abeille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP777001-alpilles",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP830001",
+    "pattern_name": "La nuit d'en yu",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP830001-la-nuit-den-yu",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334013",
+    "pattern_name": "Shiva",
+    "color_name": "Or",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334013-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP013001",
+    "pattern_name": "Transat",
+    "color_name": "Relax",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP013001-transat",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP168001",
+    "pattern_name": "Wallpaper sans papillons",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP168001-wallpaper-sans-papillons",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP349001",
+    "pattern_name": "Parvati",
+    "color_name": "Fruits Rouges",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP349001-parvati",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP008001",
+    "pattern_name": "Pleine mer",
+    "color_name": "Corail",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP008001-pleine-mer",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP651003",
+    "pattern_name": "Portofino",
+    "color_name": "Lin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP651003-portofino",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP007002",
+    "pattern_name": "Punta cana",
+    "color_name": "Meringue",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP007002-punta-cana",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP991001",
+    "pattern_name": "L'envol",
+    "color_name": "Marais",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP991001-lenvol",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334006",
+    "pattern_name": "Shiva",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334006-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP787002",
+    "pattern_name": "Fleurs de corail",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP787002-fleurs-de-corail",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP029002",
+    "pattern_name": "Lucie",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP029002-lucie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP206004",
+    "pattern_name": "Wallpaper la fontaine",
+    "color_name": "Leaf Green",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP206004-wallpaper-la-fontaine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP006001",
+    "pattern_name": "Les anemones",
+    "color_name": "Ete",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP006001-les-anemones",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP209B03",
+    "pattern_name": "Wallpaper septeuil",
+    "color_name": "Antique Blue",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP209B03-wallpaper-septeuil",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP983001",
+    "pattern_name": "Tamatoa",
+    "color_name": "Coquillage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP983001-tamatoa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334014",
+    "pattern_name": "Shiva",
+    "color_name": "Craie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334014-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP960001",
+    "pattern_name": "Ko tao",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP960001-ko-tao",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP345001",
+    "pattern_name": "Ouistitis & co",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP345001-ouistitis-co",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5446aaf2-3db7-445a-9192-0adb38de8afa/wiijxkZxWiJ2g4u3g3oh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP880003",
+    "pattern_name": "Roselia",
+    "color_name": "Nuit",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP880003-roselia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/54472970-4a98-4681-9f1d-2b656005ab86/eM0UTghLV9l7gbTCO3s4_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP354004",
+    "pattern_name": "Les lilas",
+    "color_name": "Terre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP354004-les-lilas",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP113005",
+    "pattern_name": "Floride",
+    "color_name": "Rose",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP113005-floride",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP015001",
+    "pattern_name": "Tahiti",
+    "color_name": "Oasis",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP015001-tahiti",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP070001",
+    "pattern_name": "Graphic",
+    "color_name": "Ocre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP070001-graphic",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP071002",
+    "pattern_name": "Craquelin",
+    "color_name": "Grege",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP071002-craquelin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP109002",
+    "pattern_name": "Hankeou",
+    "color_name": "Turquoise",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP109002-hankeou",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP370002",
+    "pattern_name": "Chantonnay",
+    "color_name": "Glycine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP370002-chantonnay",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP808001",
+    "pattern_name": "Les bolides de stanislas",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP808001-les-bolides-de-stanislas",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP585002",
+    "pattern_name": "Broceliande",
+    "color_name": "Orage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP585002-broceliande",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP027001",
+    "pattern_name": "Neville",
+    "color_name": "001",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP027001-neville",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP076001",
+    "pattern_name": "Kusi",
+    "color_name": "Tropical",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP076001-kusi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/58d38af7-4920-4b9d-9b0c-43476d53f60b/SHa8z8tytd9MzPtMsjnM_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4864002",
+    "pattern_name": "Wallpaper nakai",
+    "color_name": "Tobacco",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4864002-wallpaper-nakai",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP964001",
+    "pattern_name": "Touareg",
+    "color_name": "Epices",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP964001-touareg",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP951001",
+    "pattern_name": "Foret d'eden",
+    "color_name": "Sous-Bois",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP951001-foret-deden",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP773001",
+    "pattern_name": "Au fil de l'eau",
+    "color_name": "Opale",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP773001-au-fil-de-leau",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP648017",
+    "pattern_name": "Ernesto",
+    "color_name": "Glacier",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP648017-ernesto",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP870001",
+    "pattern_name": "Oka",
+    "color_name": "Sorbet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP870001-oka",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP863004",
+    "pattern_name": "Sofia",
+    "color_name": "Saumon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP863004-sofia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP777004",
+    "pattern_name": "Alpilles",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP777004-alpilles",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP006003",
+    "pattern_name": "Les anemones",
+    "color_name": "Automne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP006003-les-anemones",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP354001",
+    "pattern_name": "Les lilas",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP354001-les-lilas",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP328004",
+    "pattern_name": "La comedie",
+    "color_name": "La Comedie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP328004-la-comedie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP460001",
+    "pattern_name": "Erable",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP460001-erable",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5c05e857-bdfd-41a0-8497-bcd28fa181dc/eamfDQRX0sC9tgWDS8Nb_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP819001",
+    "pattern_name": "Les flamants roses",
+    "color_name": "Rose",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP819001-les-flamants-roses",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP044001",
+    "pattern_name": "Kawachi",
+    "color_name": "Cerisier",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP044001-kawachi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP353002",
+    "pattern_name": "Therese",
+    "color_name": "Citron",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP353002-therese",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP842003",
+    "pattern_name": "Water lily",
+    "color_name": "Terracotta",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP842003-water-lily",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP847003",
+    "pattern_name": "Praslin",
+    "color_name": "Eteindien",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP847003-praslin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP565004",
+    "pattern_name": "Tampa",
+    "color_name": "Jungle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP565004-tampa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP361003",
+    "pattern_name": "La discrete",
+    "color_name": "Rouge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP361003-la-discrete",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP913001",
+    "pattern_name": "Au bord du lac",
+    "color_name": "Sousbois",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP913001-au-bord-du-lac",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5f3d4cf5-7af3-4c1f-b958-aebd2f022fb8/fvlBdg0Ct4M1MXQpRyIh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP375001",
+    "pattern_name": "L arbre aux oiseaux coordonne",
+    "color_name": "'Arbre Aux Oiseaux Coordo",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP375001-l-arbre-aux-oiseaux-coordonne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP911001",
+    "pattern_name": "Les carpes",
+    "color_name": "Argent",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP911001-les-carpes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5f566685-ee62-4945-aefe-4d3ae02e2711/h4DnqeB6BEEtgk9RF8ds_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP786002",
+    "pattern_name": "Arlesienne",
+    "color_name": "Mimosa",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP786002-arlesienne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP946004",
+    "pattern_name": "Toile de nantes intisse",
+    "color_name": "Herbe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP946004-toile-de-nantes-intisse",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP192002",
+    "pattern_name": "Alexandrie",
+    "color_name": "BéGonia",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP192002-alexandrie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP109001",
+    "pattern_name": "Hankeou",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP109001-hankeou",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP771001",
+    "pattern_name": "Poseidon",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP771001-poseidon",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP197001",
+    "pattern_name": "Ming",
+    "color_name": "Pewter",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP197001-ming",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP322001",
+    "pattern_name": "Jour de fete",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP322001-jour-de-fete",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP207004",
+    "pattern_name": "Wallpaper les muses et le lion",
+    "color_name": "Ochre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP207004-wallpaper-les-muses-et-le-lion",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP352002",
+    "pattern_name": "Coulonges semis",
+    "color_name": "Mandarine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP352002-coulonges-semis",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP545001",
+    "pattern_name": "Watsonia",
+    "color_name": "Vanille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP545001-watsonia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/635bcf54-34f4-4924-a73b-77ce2b3b99a0/X64LKDXUY444jAfnx5rg_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4979022",
+    "pattern_name": "Wallpaper odalys",
+    "color_name": "Sky",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4979022-wallpaper-odalys",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP534002",
+    "pattern_name": "Coban",
+    "color_name": "PéTale",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP534002-coban",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP327003",
+    "pattern_name": "Les ombrelles rayure",
+    "color_name": "Craie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP327003-les-ombrelles-rayure",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP009001",
+    "pattern_name": "Acropora",
+    "color_name": "Corail",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP009001-acropora",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP051001",
+    "pattern_name": "Les fleurs de cerisiers",
+    "color_name": "Brume",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP051001-les-fleurs-de-cerisiers",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP996001",
+    "pattern_name": "Musiques du monde",
+    "color_name": "Multicolo",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP996001-musiques-du-monde",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP932002",
+    "pattern_name": "Gisele",
+    "color_name": "Ivoire",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP932002-gisele",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP019001",
+    "pattern_name": "Natalia",
+    "color_name": "Ivoire",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP019001-natalia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP545002",
+    "pattern_name": "Watsonia",
+    "color_name": "Goyave",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP545002-watsonia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/651e7b89-f90c-4d27-915c-2a6640178d48/Z5hmy8ajNkFB5g9Sk6er_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP372001",
+    "pattern_name": "Ebene",
+    "color_name": "éCru",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP372001-ebene",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP793010",
+    "pattern_name": "Nimes",
+    "color_name": "Cacao",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP793010-nimes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP328001",
+    "pattern_name": "Mojito",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP328001-mojito",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP204003",
+    "pattern_name": "Le grand corail",
+    "color_name": "Old Blue",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP204003-le-grand-corail",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4566001",
+    "pattern_name": "Wallpaper marly",
+    "color_name": "Spruce",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4566001-wallpaper-marly",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP636002",
+    "pattern_name": "Le jardin du palais",
+    "color_name": "Lever Du Jour",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP636002-le-jardin-du-palais",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/661d30fe-f671-4498-8597-0902be59a25b/k9NEsc8aNQf97vckadNr_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP943003",
+    "pattern_name": "Minneapolis",
+    "color_name": "Landes",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP943003-minneapolis",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/66232b75-1f27-4d8b-9947-2ea23a081adb/U2TWxAaz8zfD5d4pwTsB_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP838002",
+    "pattern_name": "Momiji",
+    "color_name": "Or",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP838002-momiji",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4764006",
+    "pattern_name": "Wallpaper dandy",
+    "color_name": "Black",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4764006-wallpaper-dandy",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP069004",
+    "pattern_name": "Ceylan",
+    "color_name": "Jungle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP069004-ceylan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP069003",
+    "pattern_name": "Ceylan",
+    "color_name": "Terracotta",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP069003-ceylan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP034001",
+    "pattern_name": "Yelena",
+    "color_name": "Neige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP034001-yelena",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP975004",
+    "pattern_name": "Tikehau",
+    "color_name": "Noir",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP975004-tikehau",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP202003",
+    "pattern_name": "Wallpaper peinture",
+    "color_name": "Aqua",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP202003-wallpaper-peinture",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP164001",
+    "pattern_name": "Wallpaper bazoches",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP164001-wallpaper-bazoches",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP209B02",
+    "pattern_name": "Wallpaper septeuil",
+    "color_name": "Pink Red",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP209B02-wallpaper-septeuil",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP075001",
+    "pattern_name": "Ikati",
+    "color_name": "Agave",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP075001-ikati",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/695190cc-3b87-4130-a1ce-fc7dca786802/gXKw7eMvezbFT5KJvuVd_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP378001",
+    "pattern_name": "Vert-bois",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP378001-vert-bois",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP590001",
+    "pattern_name": "Ogaki",
+    "color_name": "Origine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP590001-ogaki",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP161001",
+    "pattern_name": "Wallpaper toile de nantes",
+    "color_name": "Bleu Ancien",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP161001-wallpaper-toile-de-nantes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP160002",
+    "pattern_name": "Wallpaper les paniers fleuris",
+    "color_name": "Rose Ancien",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP160002-wallpaper-les-paniers-fleuris",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP202002",
+    "pattern_name": "Wallpaper peinture",
+    "color_name": "Nutmeg",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP202002-wallpaper-peinture",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP107001",
+    "pattern_name": "Pommes de pin",
+    "color_name": "Mordore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP107001-pommes-de-pin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP372002",
+    "pattern_name": "Ebene",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP372002-ebene",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP017002",
+    "pattern_name": "Le touquet",
+    "color_name": "Cordage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP017002-le-touquet",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP101003",
+    "pattern_name": "Madame tallien",
+    "color_name": "Rose",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP101003-madame-tallien",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP324001",
+    "pattern_name": "La route de la soie",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP324001-la-route-de-la-soie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP012001",
+    "pattern_name": "Cancale",
+    "color_name": "Encre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP012001-cancale",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP957003",
+    "pattern_name": "Lucille",
+    "color_name": "Fusain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP957003-lucille",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP921002",
+    "pattern_name": "Rita",
+    "color_name": "Corde",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP921002-rita",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP949001",
+    "pattern_name": "Caribou",
+    "color_name": "Fusain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP949001-caribou",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP786005",
+    "pattern_name": "Arlesienne",
+    "color_name": "Grenadier",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP786005-arlesienne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP963002",
+    "pattern_name": "Oboshi",
+    "color_name": "Poudre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP963002-oboshi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP036002",
+    "pattern_name": "Hemera",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP036002-hemera",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP367001",
+    "pattern_name": "Zarand",
+    "color_name": "Henne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP367001-zarand",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP967001",
+    "pattern_name": "Elixir",
+    "color_name": "Caraibes",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP967001-elixir",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP191004",
+    "pattern_name": "Wallpaper la paix",
+    "color_name": "Dark Smoke",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP191004-wallpaper-la-paix",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP032003",
+    "pattern_name": "Niamh",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP032003-niahm",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP110003",
+    "pattern_name": "Taraz",
+    "color_name": "Moutarde",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP110003-taraz",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP046002",
+    "pattern_name": "Ichika",
+    "color_name": "Terre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP046002-ichika",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP862003",
+    "pattern_name": "Pentagrama",
+    "color_name": "Aqua",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP862003-pentagrama",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6ffa13a8-59a8-4602-8eb6-8c400e735c78/jsiePU8ApHrk1sgMiCtQ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP057002",
+    "pattern_name": "Akimasa",
+    "color_name": "Galet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP057002-akimasa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP173001",
+    "pattern_name": "Wallpaper salzburg",
+    "color_name": "Snow",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP173001-wallpaper-salzburg",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP417001",
+    "pattern_name": "Coupole",
+    "color_name": "Ivoire",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP417001-coupole",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4835001",
+    "pattern_name": "Wallpaper florilege",
+    "color_name": "Snow",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4835001-wallpaper-florilege",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP101001",
+    "pattern_name": "Madame tallien",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP101001-madame-tallien",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP330001",
+    "pattern_name": "La pannonie",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP330001-la-pannonie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP013002",
+    "pattern_name": "Transat",
+    "color_name": "Sunset",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP013002-transat",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP846001",
+    "pattern_name": "Ciel reve",
+    "color_name": "Lin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP846001-ciel-reve",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP052001",
+    "pattern_name": "Tottori",
+    "color_name": "Indigo",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP052001-tottori",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP301001",
+    "pattern_name": "Jacaranda",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP301001-jacaranda",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP056001",
+    "pattern_name": "Hogara",
+    "color_name": "Indigo",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP056001-hogara",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP205003",
+    "pattern_name": "Wallpaper vermicule",
+    "color_name": "Old Blue",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP205003-wallpaper-vermicule",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP568004",
+    "pattern_name": "Fontaine et animaux barbouillage",
+    "color_name": "Rouge D'Orient",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP568004-fontaine-et-animaux-barbouillage",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP633001",
+    "pattern_name": "Kadjar",
+    "color_name": "Ecru",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP633001-kadjar",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7372e397-a80f-4db6-a92e-6a9214748e02/sMpt40w6dZWtg4gqBiFG_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP108005",
+    "pattern_name": "Plumettes",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP108005-plumettes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP939002",
+    "pattern_name": "Owen",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP939002-owen",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP770003",
+    "pattern_name": "Les singes savants",
+    "color_name": "Rouge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP770003-les-singes-savants",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP362001",
+    "pattern_name": "Ursuline",
+    "color_name": "Rouge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP362001-ursuline",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP651001",
+    "pattern_name": "Portofino",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP651001-portofino",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP201001",
+    "pattern_name": "Wallpaper petit parc",
+    "color_name": "Green/Cream",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP201001-wallpaper-petit-parc",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP974001",
+    "pattern_name": "Salvador",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP974001-salvador",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP919003",
+    "pattern_name": "Liam",
+    "color_name": "Galet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP919003-liam",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP975002",
+    "pattern_name": "Tikehau",
+    "color_name": "Aqua",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP975002-tikehau",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP585001",
+    "pattern_name": "Broceliande",
+    "color_name": "Foret",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP585001-broceliande",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP378001",
+    "pattern_name": "Ursa",
+    "color_name": "Olive",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP378001-ursa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP324008",
+    "pattern_name": "La route de la soie",
+    "color_name": "Rouge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP324008-la-route-de-la-soie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4982006",
+    "pattern_name": "Wallpaper oscar",
+    "color_name": "Black",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4982006-wallpaper-oscar",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP641001",
+    "pattern_name": "Suzie",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP641001-suzie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP771002",
+    "pattern_name": "Poseidon",
+    "color_name": "Peche",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP771002-poseidon",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP790001",
+    "pattern_name": "Patio",
+    "color_name": "Roussillon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP790001-patio",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP777002",
+    "pattern_name": "Alpilles",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP777002-alpilles",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP111002",
+    "pattern_name": "Les lions",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP111002-les-lions",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP790002",
+    "pattern_name": "Patio",
+    "color_name": "Aqua",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP790002-patio",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP360001",
+    "pattern_name": "Tendresse",
+    "color_name": "Aurelie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP360001-tendresse",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP349002",
+    "pattern_name": "Parvati",
+    "color_name": "Menthe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP349002-parvati",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP512001",
+    "pattern_name": "Keystone",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP512001-keystone",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP324003",
+    "pattern_name": "La route de la soie",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP324003-la-route-de-la-soie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334005",
+    "pattern_name": "Shiva",
+    "color_name": "Gris",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334005-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP203005",
+    "pattern_name": "Wallpaper bengali",
+    "color_name": "Ochre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP203005-wallpaper-bengali",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP565003",
+    "pattern_name": "Tampa",
+    "color_name": "Caraibes",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP565003-tampa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP399001",
+    "pattern_name": "Cuilko",
+    "color_name": "Jade",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP399001-cuilko",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7e8abc59-aaee-460e-bfc7-2246f4ad7672/3OfiJhUX0OGYpc3c9I31_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP202001",
+    "pattern_name": "Wallpaper peinture",
+    "color_name": "Cream",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP202001-wallpaper-peinture",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP977002",
+    "pattern_name": "Grenadier",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP977002-grenadier",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP195004",
+    "pattern_name": "Coutances",
+    "color_name": "Primerose Yellow",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP195004-coutances",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP356001",
+    "pattern_name": "Villandry",
+    "color_name": "Nougat",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP356001-villandry",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP956001",
+    "pattern_name": "Gabrielle",
+    "color_name": "Noir",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP956001-gabrielle",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP918001",
+    "pattern_name": "Jim",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP918001-jim",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP835001",
+    "pattern_name": "Bestiaire enchante",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP835001-bestiaire-enchante",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4697004",
+    "pattern_name": "Wallpaper tarantelle",
+    "color_name": "Platinum Blue",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4697004-wallpaper-tarantelle",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP777003",
+    "pattern_name": "Alpilles",
+    "color_name": "Ocre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP777003-alpilles",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP473002",
+    "pattern_name": "Yangzi",
+    "color_name": "OcéAn",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP473002-yangzi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP111001",
+    "pattern_name": "Les lions",
+    "color_name": "Pivoine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP111001-les-lions",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP194001",
+    "pattern_name": "Beauregard",
+    "color_name": "Wheat",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP194001-beauregard",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP432001",
+    "pattern_name": "Marabout",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP432001-marabout",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP881001",
+    "pattern_name": "Arlequinade",
+    "color_name": "Arlequin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP881001-arlequinade",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP793011",
+    "pattern_name": "Nimes",
+    "color_name": "Tuile",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP793011-nimes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP069001",
+    "pattern_name": "Ceylan",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP069001-ceylan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP330002",
+    "pattern_name": "La pannonie",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP330002-la-pannonie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP192003",
+    "pattern_name": "Alexandrie",
+    "color_name": "Blue Mist",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP192003-alexandrie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP353003",
+    "pattern_name": "Therese",
+    "color_name": "Jardin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP353003-therese",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334008",
+    "pattern_name": "Shiva",
+    "color_name": "Emeraude",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334008-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP354002",
+    "pattern_name": "Les lilas",
+    "color_name": "Mauve",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP354002-les-lilas",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP867002",
+    "pattern_name": "Matriochka",
+    "color_name": "Gypsy",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP867002-matriochka",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/86368086-7fe9-4b00-8953-c7a267cca512/nhIDbrQEWOvlsVYREu11_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP108006",
+    "pattern_name": "Plumettes",
+    "color_name": "Rouge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP108006-plumettes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP072002",
+    "pattern_name": "L'aurore",
+    "color_name": "Sunset",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP072002-laurore",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP036001",
+    "pattern_name": "Hemera",
+    "color_name": "Neige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP036001-hemera",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP103003",
+    "pattern_name": "L'arbre indien",
+    "color_name": "Rose",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP103003-larbre-indien",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP195001",
+    "pattern_name": "Coutances",
+    "color_name": "Natural",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP195001-coutances",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP361002",
+    "pattern_name": "La discrete",
+    "color_name": "Vert",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP361002-la-discrete",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP024003",
+    "pattern_name": "Tyler",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP024003-tyler",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP648007",
+    "pattern_name": "Ernesto",
+    "color_name": "Osier",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP648007-ernesto",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP940001",
+    "pattern_name": "Melbourne",
+    "color_name": "Opale",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP940001-melbourne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8766317b-834c-45ce-97dd-ae593ef38792/bgPQjzrIm5V2jqeuTo25_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP796001",
+    "pattern_name": "Surrealist ball",
+    "color_name": "Croquis",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP796001-surrealist-ball",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/87fede71-35aa-49e9-bf4b-684b484f8552/lhfOvuAvrYhb7MAGjOnk_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP197003",
+    "pattern_name": "Ming",
+    "color_name": "Saphire",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP197003-ming",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP870003",
+    "pattern_name": "Oka",
+    "color_name": "Ocean",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP870003-oka",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP039001",
+    "pattern_name": "Danae",
+    "color_name": "Nacre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP039001-danae",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP330003",
+    "pattern_name": "La pannonie",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP330003-la-pannonie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP651002",
+    "pattern_name": "Portofino",
+    "color_name": "Ivoire",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP651002-portofino",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP565001",
+    "pattern_name": "Tampa",
+    "color_name": "Palmeraie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP565001-tampa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP861003",
+    "pattern_name": "Fontainebleau",
+    "color_name": "Chataigne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP861003-fontainebleau",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP473001",
+    "pattern_name": "Yangzi",
+    "color_name": "Citron",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP473001-yangzi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP309002",
+    "pattern_name": "Wallpaper gisors",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP309002-wallpaper-gisors",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP562004",
+    "pattern_name": "Nuages",
+    "color_name": "Indigo",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP562004-nuages",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8a887629-6f6e-4eab-9ee0-6b765557d708/KTcdRQUkFQtAp5P7vVtC_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP066002",
+    "pattern_name": "Tadoba",
+    "color_name": "Tigre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP066002-tadoba",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP838001",
+    "pattern_name": "Momiji",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP838001-momiji",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP370003",
+    "pattern_name": "Chantonnay",
+    "color_name": "Bleu Tendre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP370003-chantonnay",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4928002",
+    "pattern_name": "Wallpaper jamaica",
+    "color_name": "Yellow",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4928002-wallpaper-jamaica",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP181001",
+    "pattern_name": "Wallpaper sintra",
+    "color_name": "Adriatique",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP181001-wallpaper-sintra",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP613003",
+    "pattern_name": "Voyage en toscane la montagne",
+    "color_name": "Voyage En Toscane La Montagne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP613003-voyage-en-toscane-la-montagne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP346002",
+    "pattern_name": "Indira",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP346002-indira",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP063001",
+    "pattern_name": "Segou",
+    "color_name": "Ocre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP063001-segou",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP882004",
+    "pattern_name": "Comedia",
+    "color_name": "Arlequin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP882004-comedia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8ddd9ebe-d08b-4c91-8ad4-0224de651758/4WAWUGsuRnkp14I63i6V_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP923004",
+    "pattern_name": "Suzette",
+    "color_name": "Argent",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP923004-suzette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP365004",
+    "pattern_name": "Pontchartrain coordonne",
+    "color_name": "Anis",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP365004-pontchartrain-coordonne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP891001",
+    "pattern_name": "Papyrus",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP891001-papyrus",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP566001",
+    "pattern_name": "Totem",
+    "color_name": "Positif",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP566001-totem",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP066001",
+    "pattern_name": "Tadoba",
+    "color_name": "Neige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP066001-tadoba",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP861001",
+    "pattern_name": "Fontainebleau",
+    "color_name": "Amande",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP861001-fontainebleau",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP639001",
+    "pattern_name": "Zelie",
+    "color_name": "Naturel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP639001-zelie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP391001",
+    "pattern_name": "Colomba",
+    "color_name": "Coquillage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP391001-colomba",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP064002",
+    "pattern_name": "Costa",
+    "color_name": "Dune",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP064002-costa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP444001",
+    "pattern_name": "Arty",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP444001-arty",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP390002",
+    "pattern_name": "Centaurus",
+    "color_name": "Tabac",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP390002-centaurus",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/921d019e-6e78-4e19-beac-dff1a3f0aac1/WGJDYRvGGqim1tANb4IS_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP636001",
+    "pattern_name": "Le jardin du palais",
+    "color_name": "Nuit",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP636001-le-jardin-du-palais",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/923e805b-e9b9-490b-8c68-29b5509fa518/jVjKSUjKlB9HdCMdss6S_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP193003",
+    "pattern_name": "Aquarius",
+    "color_name": "Blue Surf",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP193003-aquarius",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP025001",
+    "pattern_name": "Alicia",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP025001-alicia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP936002",
+    "pattern_name": "Sven",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP936002-sven",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP765003",
+    "pattern_name": "Amala",
+    "color_name": "Granny",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP765003-amala",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/92ec0e54-1f57-40a6-90a0-627a2363b6e6/X1KmkbJ06mDu214xLWqj_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP321003",
+    "pattern_name": "La perouse",
+    "color_name": "Sous Bois",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP321003-la-perouse",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9321c6f9-6639-4b8e-83a8-b4c8c54aac94/3LYKhFJMJxxFiV3nvuDG_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4697003",
+    "pattern_name": "Wallpaper tarantelle",
+    "color_name": "Marie-Antoinette",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4697003-wallpaper-tarantelle",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP008002",
+    "pattern_name": "Pleine mer",
+    "color_name": "Cactus",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP008002-pleine-mer",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4641001",
+    "pattern_name": "Wallpaper ombre",
+    "color_name": "Pink",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4641001-wallpaper-ombre",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP793020",
+    "pattern_name": "Nimes",
+    "color_name": "Turquoise",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP793020-nimes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP167004",
+    "pattern_name": "Wallpaper papillons",
+    "color_name": "Corail",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP167004-wallpaper-papillons",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP007001",
+    "pattern_name": "Punta cana",
+    "color_name": "Encre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP007001-punta-cana",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP484001",
+    "pattern_name": "Heather",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP484001-heather",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP161002",
+    "pattern_name": "Wallpaper toile de nantes",
+    "color_name": "Rose Ancien",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP161002-wallpaper-toile-de-nantes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP939001",
+    "pattern_name": "Owen",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP939001-owen",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP480001",
+    "pattern_name": "Martinique",
+    "color_name": "CéLadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP480001-martinique",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP475012",
+    "pattern_name": "Kimono",
+    "color_name": "Beige Daim",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP475012-kimono",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/97de0f96-cf5e-45ac-93a4-4b278418872e/MqLkk8UknSolm4ynNHoc_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP103004",
+    "pattern_name": "L'arbre indien",
+    "color_name": "Prune",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP103004-larbre-indien",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP338003",
+    "pattern_name": "Le paravent chinois",
+    "color_name": "Chantilly",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP338003-le-paravent-chinois",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP863002",
+    "pattern_name": "Sofia",
+    "color_name": "Perle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP863002-sofia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP331001",
+    "pattern_name": "L'odissi",
+    "color_name": "Rose",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP331001-lodissi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP198003",
+    "pattern_name": "Planisphere",
+    "color_name": "Nutmeg",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP198003-planisphere",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP102001",
+    "pattern_name": "Alizarine",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP102001-alizarine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4982003",
+    "pattern_name": "Wallpaper oscar",
+    "color_name": "Blue",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4982003-wallpaper-oscar",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP369001",
+    "pattern_name": "Poesie indienne",
+    "color_name": "Bindi",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP369001-poesie-indienne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP207005",
+    "pattern_name": "Wallpaper les muses et le lion",
+    "color_name": "Copper",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP207005-wallpaper-les-muses-et-le-lion",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP016001",
+    "pattern_name": "Borneo",
+    "color_name": "Tropical",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP016001-borneo",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP040001",
+    "pattern_name": "Teodor",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP040001-teodor",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP847002",
+    "pattern_name": "Praslin",
+    "color_name": "Argile",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP847002-praslin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP002001",
+    "pattern_name": "Riad",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP002001-riad",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP846002",
+    "pattern_name": "Ciel reve",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP846002-ciel-reve",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP405002",
+    "pattern_name": "Zia",
+    "color_name": "Chaux",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP405002-zia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP103001",
+    "pattern_name": "L'arbre indien",
+    "color_name": "CrèMe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP103001-larbre-indien",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP330004",
+    "pattern_name": "La pannonie",
+    "color_name": "Vert",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP330004-la-pannonie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP310004",
+    "pattern_name": "Jardin de mysore",
+    "color_name": "Brun",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP310004-jardin-de-mysore",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP057001",
+    "pattern_name": "Akimasa",
+    "color_name": "Indigo",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP057001-akimasa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP328005",
+    "pattern_name": "Mojito",
+    "color_name": "Azulejos",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP328005-mojito",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334017",
+    "pattern_name": "Shiva",
+    "color_name": "Nuage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334017-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP362003",
+    "pattern_name": "Ursuline",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP362003-ursuline",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP648009",
+    "pattern_name": "Ernesto",
+    "color_name": "Paille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP648009-ernesto",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP362002",
+    "pattern_name": "Ursuline",
+    "color_name": "Mauve",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP362002-ursuline",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4928001",
+    "pattern_name": "Wallpaper jamaica",
+    "color_name": "Cream",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4928001-wallpaper-jamaica",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP648001",
+    "pattern_name": "Ernesto",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP648001-ernesto",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP319001",
+    "pattern_name": "L'armoire de marguerite",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP319001-larmoire-de-marguerite",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP927002",
+    "pattern_name": "Flavie",
+    "color_name": "Albatre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP927002-flavie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP530001",
+    "pattern_name": "Kyoto",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP530001-kyoto",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP380002",
+    "pattern_name": "Jardin de bagatelle",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP380002-jardin-de-bagatelle",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP352003",
+    "pattern_name": "Coulonges semis",
+    "color_name": "Amande",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP352003-coulonges-semis",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334025",
+    "pattern_name": "Shiva",
+    "color_name": "Roussillon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334025-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP881002",
+    "pattern_name": "Arlequinade",
+    "color_name": "Glacier",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP881002-arlequinade",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334018",
+    "pattern_name": "Shiva",
+    "color_name": "Source",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334018-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP328003",
+    "pattern_name": "La comedie",
+    "color_name": "La Comedie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP328003-la-comedie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP605001",
+    "pattern_name": "Canaima",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP605001-canaima",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4630A01",
+    "pattern_name": "Wallpaper bananier",
+    "color_name": "éCru Green",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4630A01-wallpaper-bananier",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP521001",
+    "pattern_name": "La serre",
+    "color_name": "Palmier",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP521001-la-serre",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP310002",
+    "pattern_name": "Jardin de mysore",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP310002-jardin-de-mysore",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP204001",
+    "pattern_name": "Le grand corail",
+    "color_name": "Antique Red",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP204001-le-grand-corail",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4864007",
+    "pattern_name": "Wallpaper nakai",
+    "color_name": "Black",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4864007-wallpaper-nakai",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP337001",
+    "pattern_name": "Shaolin",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP337001-shaolin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP648011",
+    "pattern_name": "Ernesto",
+    "color_name": "Ble",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP648011-ernesto",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP877002",
+    "pattern_name": "Pavlova",
+    "color_name": "Rose",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP877002-pavlova",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334002",
+    "pattern_name": "Shiva",
+    "color_name": "CrèMe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334002-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP863001",
+    "pattern_name": "Sofia",
+    "color_name": "Calcaire",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP863001-sofia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP514001",
+    "pattern_name": "Grand canyon",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP514001-grand-canyon",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP170001",
+    "pattern_name": "Wallpaper crespieres",
+    "color_name": "Bleu Ancien",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP170001-wallpaper-crespieres",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP205002",
+    "pattern_name": "Wallpaper vermicule",
+    "color_name": "Ochre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP205002-wallpaper-vermicule",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP971002",
+    "pattern_name": "Tehea",
+    "color_name": "Charbon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP971002-tehea",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP324002",
+    "pattern_name": "La route de la soie",
+    "color_name": "Ivoire",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP324002-la-route-de-la-soie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP786003",
+    "pattern_name": "Arlesienne",
+    "color_name": "Agave",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP786003-arlesienne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP861004",
+    "pattern_name": "Fontainebleau",
+    "color_name": "Marronnier",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP861004-fontainebleau",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP959002",
+    "pattern_name": "Belize",
+    "color_name": "Fusain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP959002-belize",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP377001",
+    "pattern_name": "La voliere aux papillons",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP377001-la-voliere-aux-papillons",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP172001",
+    "pattern_name": "Wallpaper fleurs de mai",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP172001-wallpaper-fleurs-de-mai",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP025002",
+    "pattern_name": "Alicia",
+    "color_name": "Galet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP025002-alicia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP770001",
+    "pattern_name": "Les singes savants",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP770001-les-singes-savants",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP535002",
+    "pattern_name": "Nuances",
+    "color_name": "Pampa",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP535002-nuances",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP185003",
+    "pattern_name": "Wallpaper erevan",
+    "color_name": "Delft Blue",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP185003-wallpaper-erevan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP047001",
+    "pattern_name": "Ukiyoe",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP047001-ukiyoe",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP328004",
+    "pattern_name": "Mojito",
+    "color_name": "Café",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP328004-mojito",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP106001",
+    "pattern_name": "Madame elisabeth",
+    "color_name": "Tournesol",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP106001-madame-elisabeth",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP053002",
+    "pattern_name": "Fuji",
+    "color_name": "Pierre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP053002-fuji",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP201002",
+    "pattern_name": "Wallpaper petit parc",
+    "color_name": "Nutmeg/Blue",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP201002-wallpaper-petit-parc",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP405015",
+    "pattern_name": "Zia",
+    "color_name": "Orage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP405015-zia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP534004",
+    "pattern_name": "Coban",
+    "color_name": "Cognac",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP534004-coban",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP922002",
+    "pattern_name": "Cristina",
+    "color_name": "Cuivre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP922002-cristina",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP567001",
+    "pattern_name": "Fontaine et animaux",
+    "color_name": "Noir/Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP567001-fontaine-et-animaux",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP353004",
+    "pattern_name": "Therese",
+    "color_name": "Bleuet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP353004-therese",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP872004",
+    "pattern_name": "Mariinsky",
+    "color_name": "Peche",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP872004-mariinsky",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP207002",
+    "pattern_name": "Wallpaper les muses et le lion",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP207002-wallpaper-les-muses-et-le-lion",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP064001",
+    "pattern_name": "Costa",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP064001-costa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP305001",
+    "pattern_name": "Calligraphie",
+    "color_name": "Marron",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP305001-calligraphie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP990001",
+    "pattern_name": "Aristoloches",
+    "color_name": "Verdure",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP990001-aristoloches",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP863013",
+    "pattern_name": "Sofia",
+    "color_name": "Citrus",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP863013-sofia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP980002",
+    "pattern_name": "Rangiroa",
+    "color_name": "Tropiques",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP980002-rangiroa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP864003",
+    "pattern_name": "Corail magique",
+    "color_name": "Peche",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP864003-corail-magique",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP195003",
+    "pattern_name": "Coutances",
+    "color_name": "Wheat",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP195003-coutances",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP055001",
+    "pattern_name": "Azuma",
+    "color_name": "Bambou",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP055001-azuma",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP349003",
+    "pattern_name": "Parvati",
+    "color_name": "Prairie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP349003-parvati",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP868001",
+    "pattern_name": "Tatiana",
+    "color_name": "Pollen",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP868001-tatiana",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP105002",
+    "pattern_name": "Batik raisin",
+    "color_name": "Poudre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP105002-batik-raisin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP770002",
+    "pattern_name": "Les singes savants",
+    "color_name": "Noir",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP770002-les-singes-savants",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP892002",
+    "pattern_name": "Mirage",
+    "color_name": "Noir",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP892002-mirage",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b3fd82be-dd6e-4923-accd-19ffa2b7347f/pYnwQWm9bve6HGBO29XI_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP201003",
+    "pattern_name": "Wallpaper petit parc",
+    "color_name": "Aqua/Brown",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP201003-wallpaper-petit-parc",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP365005",
+    "pattern_name": "Pontchartrain coordonne",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP365005-pontchartrain-coordonne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP198002",
+    "pattern_name": "Planisphere",
+    "color_name": "Persimmon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP198002-planisphere",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP361004",
+    "pattern_name": "La discrete",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP361004-la-discrete",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4764001",
+    "pattern_name": "Wallpaper dandy",
+    "color_name": "Red",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4764001-wallpaper-dandy",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP932001",
+    "pattern_name": "Gisele",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP932001-gisele",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP112001",
+    "pattern_name": "Mikado",
+    "color_name": "Ocre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP112001-mikado",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP640002",
+    "pattern_name": "Albertine",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP640002-albertine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP446002",
+    "pattern_name": "Leo",
+    "color_name": "Indigo",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP446002-leo",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP644001",
+    "pattern_name": "Chloe",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP644001-chloe",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4516003",
+    "pattern_name": "Wallpaper gasaki",
+    "color_name": "Red Curry",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4516003-wallpaper-gasaki",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP374001",
+    "pattern_name": "L arbre aux oiseaux",
+    "color_name": "Miel Et Turquoise",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP374001-l-arbre-aux-oiseaux",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP779001",
+    "pattern_name": "Calanques",
+    "color_name": "Mediterranee",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP779001-calanques",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP475006",
+    "pattern_name": "Kimono",
+    "color_name": "Sous Bois",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP475006-kimono",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b858d4ec-2a07-4820-95e5-96d6efa4be23/orkUPtU4OlmQZ1G3bW47_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP364002",
+    "pattern_name": "Les renoncules",
+    "color_name": "Bleu Tendre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP364002-les-renoncules",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP922001",
+    "pattern_name": "Cristina",
+    "color_name": "Nacre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP922001-cristina",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP071001",
+    "pattern_name": "Craquelin",
+    "color_name": "Ocre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP071001-craquelin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP862002",
+    "pattern_name": "Pentagrama",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP862002-pentagrama",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ba742fe8-140f-41b6-b23d-5038a2e4402b/9CBHGjihD4snZUnww3zR_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP314002",
+    "pattern_name": "Indus tise",
+    "color_name": "Lin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP314002-indus-tise",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP108001",
+    "pattern_name": "Plumettes",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP108001-plumettes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP107003",
+    "pattern_name": "Pommes de pin",
+    "color_name": "Dune",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP107003-pommes-de-pin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP651004",
+    "pattern_name": "Portofino",
+    "color_name": "Raphia",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP651004-portofino",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP169001",
+    "pattern_name": "Wallpaper espalier",
+    "color_name": "Prairie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP169001-wallpaper-espalier",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP793024",
+    "pattern_name": "Nimes",
+    "color_name": "Aqua",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP793024-nimes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP405018",
+    "pattern_name": "Zia",
+    "color_name": "Ardoise",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP405018-zia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP861002",
+    "pattern_name": "Fontainebleau",
+    "color_name": "Noisette",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP861002-fontainebleau",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP615001",
+    "pattern_name": "Magie japonaise",
+    "color_name": "Naturel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP615001-magie-japonaise",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4671A02",
+    "pattern_name": "Wallpaper chateaubriand",
+    "color_name": "Gold",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4671A02-wallpaper-chateaubriand",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP021001",
+    "pattern_name": "Aelys",
+    "color_name": "Chantilly",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP021001-aelys",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP316001",
+    "pattern_name": "Gaya",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP316001-gaya",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP203002",
+    "pattern_name": "Wallpaper bengali",
+    "color_name": "Antique Red",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP203002-wallpaper-bengali",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP105005",
+    "pattern_name": "Batik raisin",
+    "color_name": "Rouge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP105005-batik-raisin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP106002",
+    "pattern_name": "Madame elisabeth",
+    "color_name": "Garance",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP106002-madame-elisabeth",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP946001",
+    "pattern_name": "Toile de nantes intisse",
+    "color_name": "Sanguine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP946001-toile-de-nantes-intisse",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP638001",
+    "pattern_name": "Yola",
+    "color_name": "Racine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP638001-yola",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP998001",
+    "pattern_name": "Eclipse",
+    "color_name": "Lune",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP998001-eclipse",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP965002",
+    "pattern_name": "Jardins japonais",
+    "color_name": "Nuit",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP965002-jardins-japonais",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP481001",
+    "pattern_name": "Magellan",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP481001-magellan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP545003",
+    "pattern_name": "Watsonia",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP545003-watsonia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c3a7e753-89c6-4816-8e67-87182797f0ae/y8JHvoGO1pLOPtMN4doV_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP199002",
+    "pattern_name": "Saint hubert",
+    "color_name": "Leather",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP199002-saint-hubert",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP994001",
+    "pattern_name": "La vallee du mont blanc",
+    "color_name": "Ete",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP994001-la-vallee-du-mont-blanc",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP793006",
+    "pattern_name": "Nimes",
+    "color_name": "Calcaire",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP793006-nimes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334015",
+    "pattern_name": "Shiva",
+    "color_name": "Chanvre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334015-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP364003",
+    "pattern_name": "Les renoncules",
+    "color_name": "Miel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP364003-les-renoncules",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP105004",
+    "pattern_name": "Batik raisin",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP105004-batik-raisin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP649002",
+    "pattern_name": "Catalina",
+    "color_name": "Or",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP649002-catalina",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP986001",
+    "pattern_name": "Sous bois",
+    "color_name": "Ete",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP986001-sous-bois",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP792001",
+    "pattern_name": "Clapotis",
+    "color_name": "Aquatique",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP792001-clapotis",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP475007",
+    "pattern_name": "Kimono",
+    "color_name": "Nacre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP475007-kimono",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c60eb097-969a-4cb2-98cf-78bd3dc5665a/NJaT5p30fzjrUlPC4pCM_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP789001",
+    "pattern_name": "Patio exotique",
+    "color_name": "Roussillon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP789001-patio-exotique",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP354003",
+    "pattern_name": "Les lilas",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP354003-les-lilas",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP197002",
+    "pattern_name": "Ming",
+    "color_name": "Cranberry",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP197002-ming",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP793014",
+    "pattern_name": "Nimes",
+    "color_name": "Peche",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP793014-nimes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP656001",
+    "pattern_name": "Princesse",
+    "color_name": "Ecru",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP656001-princesse",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP069002",
+    "pattern_name": "Ceylan",
+    "color_name": "Ciel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP069002-ceylan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP339001",
+    "pattern_name": "Les rizieres de shangbao",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP339001-les-rizieres-de-shangbao",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP992001",
+    "pattern_name": "L'oasis",
+    "color_name": "Tropical",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP992001-loasis",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP164003",
+    "pattern_name": "Wallpaper bazoches",
+    "color_name": "Corail Amande",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP164003-wallpaper-bazoches",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP003001",
+    "pattern_name": "Les maldives",
+    "color_name": "Ecume",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP003001-les-maldives",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP893002",
+    "pattern_name": "Les poissons du nil",
+    "color_name": "Cafe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP893002-les-poissons-du-nil",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/c9bef904-f7fc-4b88-a07a-39b332fe078e/cDWJ7qfAVM79oLyZrR7s_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP111004",
+    "pattern_name": "Les lions",
+    "color_name": "Amande",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP111004-les-lions",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP107002",
+    "pattern_name": "Pommes de pin",
+    "color_name": "CrèMe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP107002-pommes-de-pin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP784001",
+    "pattern_name": "La toile du peintre",
+    "color_name": "Origina",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP784001-la-toile-du-peintre",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334019",
+    "pattern_name": "Shiva",
+    "color_name": "Sauge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334019-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP936001",
+    "pattern_name": "Sven",
+    "color_name": "Neige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP936001-sven",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP818001",
+    "pattern_name": "Encyclopedie",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP818001-encyclopedie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4516001",
+    "pattern_name": "Wallpaper gasaki",
+    "color_name": "Lime Green",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4516001-wallpaper-gasaki",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP479004",
+    "pattern_name": "Sonora",
+    "color_name": "Sable Rose",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP479004-sonora",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP433001",
+    "pattern_name": "Masai mara",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP433001-masai-mara",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP018001",
+    "pattern_name": "Alessio",
+    "color_name": "Nacre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP018001-alessio",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP438001",
+    "pattern_name": "Bonne peche",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP438001-bonne-peche",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP206001",
+    "pattern_name": "Wallpaper la fontaine",
+    "color_name": "Charcoal/Taupe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP206001-wallpaper-la-fontaine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP531001",
+    "pattern_name": "Tenere",
+    "color_name": "Ocre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP531001-tenere",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334003",
+    "pattern_name": "Shiva",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334003-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP960002",
+    "pattern_name": "Ko tao",
+    "color_name": "Aqua",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP960002-ko-tao",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP485001",
+    "pattern_name": "Jardins parisiens",
+    "color_name": "Vert Jardin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP485001-jardins-parisiens",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP549001",
+    "pattern_name": "Jalapao",
+    "color_name": "Fusain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP549001-jalapao",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cd301856-4b9f-45e5-8d89-4dd2f8832b7a/YbaxpDQdi6omQSD1ybMt_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP928001",
+    "pattern_name": "Nea",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP928001-nea",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP380001",
+    "pattern_name": "Jardin de bagatelle",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP380001-jardin-de-bagatelle",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP957001",
+    "pattern_name": "Lucille",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP957001-lucille",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP877001",
+    "pattern_name": "Pavlova",
+    "color_name": "Capucine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP877001-pavlova",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP363005",
+    "pattern_name": "Marigold",
+    "color_name": "Piment",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP363005-marigold",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP327001",
+    "pattern_name": "Les ombrelles rayure",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP327001-les-ombrelles-rayure",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP565002",
+    "pattern_name": "Tampa",
+    "color_name": "Argile",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP565002-tampa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP840003",
+    "pattern_name": "Nids jolis",
+    "color_name": "Sous-Bois",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP840003-nids-jolis",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334023",
+    "pattern_name": "Shiva",
+    "color_name": "Biche",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334023-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP346001",
+    "pattern_name": "Indira",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP346001-indira",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP804003",
+    "pattern_name": "Designer dogs",
+    "color_name": "Corde",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP804003-designer-dogs",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/cfc76a0e-5041-436c-80e1-e56c05b327dc/hQzn1gkg8RYD0HkXYFu6_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP816001",
+    "pattern_name": "Les ballerines d'esther & romane",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP816001-les-ballerines-desther-romane",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP789002",
+    "pattern_name": "Patio exotique",
+    "color_name": "Aqua",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP789002-patio-exotique",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP022001",
+    "pattern_name": "Priam",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP022001-priam",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP064003",
+    "pattern_name": "Costa",
+    "color_name": "Lagon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP064003-costa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP054002",
+    "pattern_name": "Au palais petit",
+    "color_name": "Soie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP054002-au-palais",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP196004",
+    "pattern_name": "Lavezzi",
+    "color_name": "Corail",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP196004-lavezzi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP535003",
+    "pattern_name": "Nuances",
+    "color_name": "Caraibes",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP535003-nuances",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP164002",
+    "pattern_name": "Wallpaper bazoches",
+    "color_name": "Bleu Vert",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP164002-wallpaper-bazoches",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP108007",
+    "pattern_name": "Plumettes",
+    "color_name": "Moutarde",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP108007-plumettes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP925002",
+    "pattern_name": "Aurelie",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP925002-aurelie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP199001",
+    "pattern_name": "Saint hubert",
+    "color_name": "Shadow",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP199001-saint-hubert",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP997001",
+    "pattern_name": "Poesie fleurie",
+    "color_name": "Aurore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP997001-poesie-fleurie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP889001",
+    "pattern_name": "Taperet",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP889001-taperet",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP011001",
+    "pattern_name": "Diorama",
+    "color_name": "Encre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP011001-diorama",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP348001",
+    "pattern_name": "Les arcades-albertine",
+    "color_name": "Rouge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP348001-les-arcades-albertine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP105003",
+    "pattern_name": "Batik raisin",
+    "color_name": "Galet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP105003-batik-raisin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP043002",
+    "pattern_name": "Hana",
+    "color_name": "Menthe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP043002-hana",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP310003",
+    "pattern_name": "Jardin de mysore",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP310003-jardin-de-mysore",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP379001",
+    "pattern_name": "Vert-bois rayure",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP379001-vert-bois-rayure",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP793005",
+    "pattern_name": "Nimes",
+    "color_name": "Chantilly",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP793005-nimes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP361001",
+    "pattern_name": "La discrete",
+    "color_name": "Noir",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP361001-la-discrete",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP971001",
+    "pattern_name": "Tehea",
+    "color_name": "Nacre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP971001-tehea",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP927001",
+    "pattern_name": "Flavie",
+    "color_name": "Nacre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP927001-flavie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP610001",
+    "pattern_name": "Scenes galantes",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP610001-scenes-galantes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP953002",
+    "pattern_name": "Panthera",
+    "color_name": "Sauvage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP953002-panthera",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d9f3e982-385a-4824-82aa-63e184f8f2ae/phYKTBvVw170RNaYRvyX_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP924001",
+    "pattern_name": "Carole",
+    "color_name": "Champagne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP924001-carole",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP370001",
+    "pattern_name": "Le couple",
+    "color_name": "Noiretblanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP370001-le-couple",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP535001",
+    "pattern_name": "Nuances",
+    "color_name": "Fauve",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP535001-nuances",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP206005",
+    "pattern_name": "Wallpaper la fontaine",
+    "color_name": "Yellow Blue",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP206005-wallpaper-la-fontaine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP474001",
+    "pattern_name": "Yunnan",
+    "color_name": "Bleu Terrestre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP474001-yunnan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP041001",
+    "pattern_name": "Nolan",
+    "color_name": "Chantilly",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP041001-nolan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP977001",
+    "pattern_name": "Grenadier",
+    "color_name": "Grenade",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP977001-grenadier",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP342001",
+    "pattern_name": "Le paravent chinois irise",
+    "color_name": "Prairie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP342001-le-paravent-chinois-irise",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP310001",
+    "pattern_name": "Jardin de mysore",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP310001-jardin-de-mysore",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP203001",
+    "pattern_name": "Wallpaper bengali",
+    "color_name": "Bone",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP203001-wallpaper-bengali",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP967002",
+    "pattern_name": "Elixir",
+    "color_name": "Banquise",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP967002-elixir",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP168004",
+    "pattern_name": "Wallpaper sans papillons",
+    "color_name": "Corail",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP168004-wallpaper-sans-papillons",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP969001",
+    "pattern_name": "Porte-bonheur",
+    "color_name": "Jour",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP969001-porte-bonheur",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP185004",
+    "pattern_name": "Wallpaper erevan",
+    "color_name": "Mustard",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP185004-wallpaper-erevan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP771003",
+    "pattern_name": "Poseidon",
+    "color_name": "Menthe A L'Eau",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP771003-poseidon",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP038001",
+    "pattern_name": "Esi",
+    "color_name": "Nacre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP038001-esi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP320003",
+    "pattern_name": "Mauritius",
+    "color_name": "Orage",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP320003-mauritius",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/de1705e3-02e4-435e-a649-10ea62c3270a/ISPjJWz6LkZLv1mDW1cm_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP923002",
+    "pattern_name": "Suzette",
+    "color_name": "Albatre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP923002-suzette",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP108003",
+    "pattern_name": "Plumettes",
+    "color_name": "Verveine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP108003-plumettes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP612002",
+    "pattern_name": "Voyage en toscane la campagne",
+    "color_name": "Voyage En Toscane La Campagne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP612002-voyage-en-toscane-la-campagne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP105001",
+    "pattern_name": "Batik raisin",
+    "color_name": "Pivoine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP105001-batik-raisin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP995001",
+    "pattern_name": "Plan jaillot",
+    "color_name": "Archive",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP995001-plan-jaillot",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP827001",
+    "pattern_name": "Mardi gras  multicolore",
+    "color_name": "Mardi Gras  Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP827001-mardi-gras-multicolore",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP332001",
+    "pattern_name": "Konotori",
+    "color_name": "Rose",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP332001-konotori",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP647001",
+    "pattern_name": "Alba",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP647001-alba",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP920002",
+    "pattern_name": "Inga",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP920002-inga",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP946002",
+    "pattern_name": "Toile de nantes intisse",
+    "color_name": "Cannelle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP946002-toile-de-nantes-intisse",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP029001",
+    "pattern_name": "Lucie",
+    "color_name": "Neige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP029001-lucie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP005001",
+    "pattern_name": "La baignade",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP005001-la-baignade",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334011",
+    "pattern_name": "Shiva",
+    "color_name": "PéTale",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334011-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP065002",
+    "pattern_name": "Coconut",
+    "color_name": "Terracotta",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP065002-coconut",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4630A02",
+    "pattern_name": "Wallpaper bananier",
+    "color_name": "Gold Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4630A02-wallpaper-bananier",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4669004",
+    "pattern_name": "Wallpaper radzimir",
+    "color_name": "Peony",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4669004-wallpaper-radzimir",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP207001",
+    "pattern_name": "Wallpaper les muses et le lion",
+    "color_name": "Graystone",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP207001-wallpaper-les-muses-et-le-lion",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP479001",
+    "pattern_name": "Sonora",
+    "color_name": "Fusain",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP479001-sonora",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP989001",
+    "pattern_name": "Apollon",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP989001-apollon",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP078001",
+    "pattern_name": "Ajoupa",
+    "color_name": "Terre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP078001-ajoupa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP793027",
+    "pattern_name": "Nimes",
+    "color_name": "Denim",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP793027-nimes",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP843001",
+    "pattern_name": "Tamanrasset",
+    "color_name": "Grisaille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP843001-tamanrasset",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP334022",
+    "pattern_name": "Shiva",
+    "color_name": "Cassonade",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP334022-shiva",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP600001",
+    "pattern_name": "Mille fleurs",
+    "color_name": "Printemps",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP600001-mille-fleurs",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP787003",
+    "pattern_name": "Fleurs de corail",
+    "color_name": "Terracotta",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP787003-fleurs-de-corail",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP032002",
+    "pattern_name": "Niamh",
+    "color_name": "Grege",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP032002-niahm",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP053001",
+    "pattern_name": "Fuji",
+    "color_name": "Mousse",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP053001-fuji",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP787001",
+    "pattern_name": "Fleurs de corail",
+    "color_name": "Creme",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP787001-fleurs-de-corail",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP886002",
+    "pattern_name": "Pharaon",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP886002-pharaon",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ea06b771-9c66-4829-9cb8-d0a81ee20abd/MEFIA33Fau6AhR3rlIUz_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP103006",
+    "pattern_name": "L'arbre indien",
+    "color_name": "Moutarde",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP103006-larbre-indien",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP353001",
+    "pattern_name": "Therese",
+    "color_name": "Caramel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP353001-therese",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP363001",
+    "pattern_name": "Marigold",
+    "color_name": "Emeraude",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP363001-marigold",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP100003",
+    "pattern_name": "Le chariot chinois",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP100003-le-chariot-chinois",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP648010",
+    "pattern_name": "Ernesto",
+    "color_name": "Vanille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP648010-ernesto",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP205001",
+    "pattern_name": "Wallpaper vermicule",
+    "color_name": "Antique Red",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP205001-wallpaper-vermicule",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP363004",
+    "pattern_name": "Marigold",
+    "color_name": "Epice",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP363004-marigold",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP405019",
+    "pattern_name": "Zia",
+    "color_name": "MinéRal",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP405019-zia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4669002",
+    "pattern_name": "Wallpaper radzimir",
+    "color_name": "Coral",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4669002-wallpaper-radzimir",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP643001",
+    "pattern_name": "Ramane",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP643001-ramane",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP405014",
+    "pattern_name": "Zia",
+    "color_name": "GrèGe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP405014-zia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP167001",
+    "pattern_name": "Wallpaper papillons",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP167001-wallpaper-papillons",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP194003",
+    "pattern_name": "Beauregard",
+    "color_name": "Jute",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP194003-beauregard",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP327002",
+    "pattern_name": "Les ombrelles rayure",
+    "color_name": "Lin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP327002-les-ombrelles-rayure",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP939004",
+    "pattern_name": "Owen",
+    "color_name": "Cannelle",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP939004-owen",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4864006",
+    "pattern_name": "Wallpaper nakai",
+    "color_name": "Pistacchio",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4864006-wallpaper-nakai",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP837001",
+    "pattern_name": "Carnaval",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP837001-carnaval",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP464002",
+    "pattern_name": "Cirrus",
+    "color_name": "Naturel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP464002-cirrus",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ee2f4913-48c9-4efb-b0d3-3533162acc4c/LDTeob7HH7CzHsFHE5n8_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP946006",
+    "pattern_name": "Toile de nantes intisse",
+    "color_name": "Ocean",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP946006-toile-de-nantes-intisse",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP167003",
+    "pattern_name": "Wallpaper papillons",
+    "color_name": "Bleu",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP167003-wallpaper-papillons",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP203004",
+    "pattern_name": "Wallpaper bengali",
+    "color_name": "Old Blue",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP203004-wallpaper-bengali",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP074001",
+    "pattern_name": "Tapa",
+    "color_name": "Ocre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP074001-tapa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/eea775b2-dd0e-4077-9986-1f670b53e873/xigIHvZq62xP7dayHhC6_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP104001",
+    "pattern_name": "Paradis perdu",
+    "color_name": "Automne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP104001-paradis-perdu",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP358001",
+    "pattern_name": "Mandalay coordonne",
+    "color_name": "Hortensia",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP358001-mandalay-coordonne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP885005",
+    "pattern_name": "Sennefer",
+    "color_name": "Nil",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP885005-sennefer",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ef999394-65b5-44fc-b144-7b2bfc4959aa/KzRt4GARjitb8ZKB8PfW_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP431002",
+    "pattern_name": "Les aeronefs",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP431002-les-aeronefs",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP365001",
+    "pattern_name": "Pontchartrain coordonne",
+    "color_name": "Pivoin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP365001-pontchartrain-coordonne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "LP110001",
+    "pattern_name": "Taraz",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP110001-taraz",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP064004",
+    "pattern_name": "Costa",
+    "color_name": "Galet",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP064004-costa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP481003",
+    "pattern_name": "Magellan",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP481003-magellan",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4671A04",
+    "pattern_name": "Wallpaper chateaubriand",
+    "color_name": "Taupe",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4671A04-wallpaper-chateaubriand",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP196001",
+    "pattern_name": "Lavezzi",
+    "color_name": "Linen",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP196001-lavezzi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP376001",
+    "pattern_name": "Le chant du coq",
+    "color_name": "Nacre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP376001-le-chant-du-coq",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP475008",
+    "pattern_name": "Kimono",
+    "color_name": "Naturel",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP475008-kimono",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f25bd3cf-fe96-4f9c-b1ac-116c7fdbdfeb/I77fwpVZHuKGPdljGcr7_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP921001",
+    "pattern_name": "Rita",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP921001-rita",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP475011",
+    "pattern_name": "Kimono",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP475011-kimono",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f303a333-51de-451e-8867-04b1e6efbe4f/ricOYx8mhrMhux6CxAa0_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "BP204004",
+    "pattern_name": "Le grand corail",
+    "color_name": "Lavender",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP204004-le-grand-corail",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP169002",
+    "pattern_name": "Wallpaper espalier",
+    "color_name": "Foin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP169002-wallpaper-espalier",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP043001",
+    "pattern_name": "Hana",
+    "color_name": "Bougainvillier",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP043001-hana",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP847001",
+    "pattern_name": "Praslin",
+    "color_name": "Soleilcouchant",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP847001-praslin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP030001",
+    "pattern_name": "Felindra",
+    "color_name": "Chantilly",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP030001-felindra",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP198001",
+    "pattern_name": "Planisphere",
+    "color_name": "Gray",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP198001-planisphere",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP206002",
+    "pattern_name": "Wallpaper la fontaine",
+    "color_name": "Antique Rose",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP206002-wallpaper-la-fontaine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP206006",
+    "pattern_name": "Wallpaper la fontaine",
+    "color_name": "Ochre Red",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP206006-wallpaper-la-fontaine",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP208002",
+    "pattern_name": "Wallpaper marquis de seignelay",
+    "color_name": "Coral/Leaf",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP208002-wallpaper-marquis-de-seignelay",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP073001",
+    "pattern_name": "Maria",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP073001-maria",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f6e9fef8-8360-4c84-866c-9a4ba0238bb5/X04shOtyStNPtVwjh6Wh_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP963001",
+    "pattern_name": "Oboshi",
+    "color_name": "Beige",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP963001-oboshi",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP873003",
+    "pattern_name": "Anastasia",
+    "color_name": "Groseille",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP873003-anastasia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f7b5074f-8c02-40c2-86f8-984a60f847f4/X2DFWL9sU6dmo4VS4qFp_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP829001",
+    "pattern_name": "Le carrousel",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP829001-le-carrousel",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP607001",
+    "pattern_name": "Les rois de la jungle",
+    "color_name": "Pop",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP607001-les-rois-de-la-jungle",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP368001",
+    "pattern_name": "Zarand coordonne",
+    "color_name": "Henne",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP368001-zarand-coordonne",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP973002",
+    "pattern_name": "Tuamotu",
+    "color_name": "Lagon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP973002-tuamotu",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP966003",
+    "pattern_name": "Castellaras",
+    "color_name": "Toscane",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP966003-castellaras",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP363002",
+    "pattern_name": "Marigold",
+    "color_name": "Cumin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP363002-marigold",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP518001",
+    "pattern_name": "Fond marin",
+    "color_name": "Outremer",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP518001-fond-marin",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4864001",
+    "pattern_name": "Wallpaper nakai",
+    "color_name": "Red",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4864001-wallpaper-nakai",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP863008",
+    "pattern_name": "Sofia",
+    "color_name": "Orge",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP863008-sofia",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP973001",
+    "pattern_name": "Tuamotu",
+    "color_name": "Aurore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP973001-tuamotu",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP943005",
+    "pattern_name": "Minneapolis",
+    "color_name": "Ombre",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP943005-minneapolis",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fb295663-6851-4a97-9d69-ee1698fcb952/19E6SrSWlmRBz7Bfj8WU_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP949002",
+    "pattern_name": "Caribou",
+    "color_name": "Sapin",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP949002-caribou",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP999001",
+    "pattern_name": "Emily",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP999001-emily",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fbe69fde-c7a9-412e-9302-929a70cd2edc/vRkNQfr2AiPHycKO8HO1_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP504001",
+    "pattern_name": "Stone",
+    "color_name": "Sable",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP504001-stone",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP946005",
+    "pattern_name": "Toile de nantes intisse",
+    "color_name": "Celadon",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP946005-toile-de-nantes-intisse",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP611001",
+    "pattern_name": "Voyage en toscane la mer",
+    "color_name": "Voyage En Toscane La Mer",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP611001-voyage-en-toscane-la-mer",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP208001",
+    "pattern_name": "Wallpaper marquis de seignelay",
+    "color_name": "Ochre/Green",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP208001-wallpaper-marquis-de-seignelay",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP046001",
+    "pattern_name": "Ichika",
+    "color_name": "Vert",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP046001-ichika",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "FP935001",
+    "pattern_name": "Blake",
+    "color_name": "Blanc",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP935001-blake",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "LP110002",
+    "pattern_name": "Taraz",
+    "color_name": "Pivoine",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/LP110002-taraz",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP328005",
+    "pattern_name": "La comedie",
+    "color_name": "La Comedie",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP328005-la-comedie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4515A08",
+    "pattern_name": "Wallpaper kanawa",
+    "color_name": "Icy White",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4515A08-wallpaper-kanawa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4515A09",
+    "pattern_name": "Wallpaper kanawa",
+    "color_name": "Black White",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4515A09-wallpaper-kanawa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4515A11",
+    "pattern_name": "Wallpaper kanawa",
+    "color_name": "Platinum",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4515A11-wallpaper-kanawa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4515B07",
+    "pattern_name": "Wallpaper kanawa",
+    "color_name": "Black Ivory",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4515B07-wallpaper-kanawa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4515B08",
+    "pattern_name": "Wallpaper kanawa",
+    "color_name": "Icy White",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4515B08-wallpaper-kanawa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4515B09",
+    "pattern_name": "Wallpaper kanawa",
+    "color_name": "Black White",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4515B09-wallpaper-kanawa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "W4515B11",
+    "pattern_name": "Wallpaper kanawa",
+    "color_name": "Platinum",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4515B11-wallpaper-kanawa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP317001",
+    "pattern_name": "Anne-marie",
+    "color_name": "Original",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP317001-anne-marie",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "FP452002",
+    "pattern_name": "Lan-fish",
+    "color_name": "Mare",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/FP452002-lan-fish",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "W4515A07",
+    "pattern_name": "Wallpaper kanawa",
+    "color_name": "Black Ivory",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/W4515A07-wallpaper-kanawa",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk_251x335_webp.webp"
+  },
+  {
+    "mfr_sku": "BP344001",
+    "pattern_name": "Le paradis aux mille fleurs",
+    "color_name": "Multicolore",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/BP344001-le-paradis-aux-mille-fleurs",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp_335x251_webp.webp"
+  },
+  {
+    "mfr_sku": "TP617001",
+    "pattern_name": "Carnation stripe",
+    "color_name": "Strawberry",
+    "category": "Wallpapers",
+    "product_url": "https://www.pierrefrey.com/en/wallpapers/TP617001-carnation-stripe",
+    "list_image": "https://static.pierrefrey.com/uploads/product/packshots/2c99f02f-775c-4ccd-af55-3e05ff6e8104/y1ZhPOjnSWHdvQB9w5Wm_335x251_webp.webp"
+  }
+]
\ No newline at end of file
diff --git a/DW-Programming/ImportNewSkufromURL/pierre-frey-scrape.jsonl b/DW-Programming/ImportNewSkufromURL/pierre-frey-scrape.jsonl
new file mode 100644
index 00000000..bb548e8d
--- /dev/null
+++ b/DW-Programming/ImportNewSkufromURL/pierre-frey-scrape.jsonl
@@ -0,0 +1,1161 @@
+{"mfr_sku":"FP288001","pattern_name":"Le bassin aux nenuphars","color_name":"Lac","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP288001-le-bassin-aux-nenuphars","list_image":"https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"H: 90 cm - 35,00 inch | V: 170 cm - 66,92 inch | Half drop repeat","Weight":"200 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 170 cm - 66,92 inch | Half drop repeat","weight":"200 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le bassin aux nenuphars","description":"Small width printed wallpapers - Paperbacked fabrics, Le bassin aux nenuphars. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/C5PDgYWDgXyUOv4YbwU8.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/C5PDgYWDgXyUOv4YbwU8.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/C5PDgYWDgXyUOv4YbwU8.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:03:54.200Z"}
+{"mfr_sku":"FP270001","pattern_name":"Belle de provence","color_name":"Jardin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP270001-belle-de-provence","list_image":"https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 16 cm - 6,29 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 16 cm - 6,29 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Belle de provence","description":"Printed wallpapers, Belle de provence. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/07078bc3-88d6-4b5d-80fb-30cf60c425ad/jCWXFO43dAxcldG2g0yj.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/07078bc3-88d6-4b5d-80fb-30cf60c425ad/jCWXFO43dAxcldG2g0yj.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/07078bc3-88d6-4b5d-80fb-30cf60c425ad/jCWXFO43dAxcldG2g0yj.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:03:54.952Z"}
+{"mfr_sku":"FP284001","pattern_name":"Les quatre potagers","color_name":"Travertin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP284001-les-quatre-potagers","list_image":"https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Artist":"Pauline Chanet","Sales Unit":"Available per meter/yard","Backing":"OSNABURG","Composition":"100 % Vinyl","Width":"130 cm / 51,18 inch","Repeat":"H: 130 cm - 51,00 inch | V: 121 cm - 47,63 inch | Straight repeat","Weight":"450 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A"},"width":"130 cm / 51,18 inch","composition":"100 % Vinyl","material":"OSNABURG","pattern_repeat":"H: 130 cm - 51,00 inch | V: 121 cm - 47,63 inch | Straight repeat","weight":"450 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les quatre potagers","description":"Wide width printed wallpapers - Vinyls, Les quatre potagers. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/07313313-a1c5-49a7-a321-e285fde0ab23/9fHl2zVRlCr1Pi9mT1Fp.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/07313313-a1c5-49a7-a321-e285fde0ab23/9fHl2zVRlCr1Pi9mT1Fp.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/07313313-a1c5-49a7-a321-e285fde0ab23/9fHl2zVRlCr1Pi9mT1Fp.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:03:55.717Z"}
+{"mfr_sku":"FP261001","pattern_name":"Casa","color_name":"Perle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP261001-casa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0c94984c-2b81-40e9-9d48-f1e00472fae6/hpTxEH19UizYkitLldVx_251x335_webp.webp","specs":{"Type":"Embossed patterns - Straws and similar materials - Embroideries","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per roll of  7,20 mts","Backing":"NON WOVEN","Composition":"57 % Straw - 21 % Viscose - 17 % Polyester - 5 % metallised yarn Lurex","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 40 cm - 15,74 inch | Free match","Weight":"455 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting"},"width":"86 cm / 33,85 inch","composition":"57 % Straw - 21 % Viscose - 17 % Polyester - 5 % metallised yarn Lurex","material":"NON WOVEN","pattern_repeat":"H: 86 cm - 33,00 inch | V: 40 cm - 15,74 inch | Free match","weight":"455 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Casa","description":"Embossed patterns - Straws and similar materials - Embroideries, Casa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0c94984c-2b81-40e9-9d48-f1e00472fae6/hpTxEH19UizYkitLldVx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0c94984c-2b81-40e9-9d48-f1e00472fae6/hpTxEH19UizYkitLldVx.webp","https://static.pierrefrey.com/uploads/product/packshots/9989b2ee-3b15-4e88-a2f0-e958cf729174/sbALfznlhI5JfficPKXF.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/11bada4d-3584-4c49-8b0d-5bca18b24f4b/fHEFWDtauUO7kisbbRRK.webp","https://static.pierrefrey.com/uploads/product/packshots/42f8ed96-dc5e-469c-85ee-88f401d160f0/6GoFDX2y94HIisYOaZX7.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/0c94984c-2b81-40e9-9d48-f1e00472fae6/7hfvyDusUYjXFSlFco2G.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0c94984c-2b81-40e9-9d48-f1e00472fae6/hpTxEH19UizYkitLldVx.webp,https://static.pierrefrey.com/uploads/product/packshots/9989b2ee-3b15-4e88-a2f0-e958cf729174/sbALfznlhI5JfficPKXF.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/11bada4d-3584-4c49-8b0d-5bca18b24f4b/fHEFWDtauUO7kisbbRRK.webp,https://static.pierrefrey.com/uploads/product/packshots/42f8ed96-dc5e-469c-85ee-88f401d160f0/6GoFDX2y94HIisYOaZX7.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/0c94984c-2b81-40e9-9d48-f1e00472fae6/7hfvyDusUYjXFSlFco2G.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/0c94984c-2b81-40e9-9d48-f1e00472fae6/7hfvyDusUYjXFSlFco2G.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:03:56.331Z"}
+{"mfr_sku":"FP277001","pattern_name":"Giardino","color_name":"Mediterranee","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP277001-giardino","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0e4f7f35-9f5e-494b-a30d-eb6dd5bb0c00/uy5LyMlY5vx9ZdTkSZjj_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 96 cm - 37,79 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 96 cm - 37,79 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Giardino","description":"Wide width printed wallpapers, Giardino. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0e4f7f35-9f5e-494b-a30d-eb6dd5bb0c00/uy5LyMlY5vx9ZdTkSZjj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0e4f7f35-9f5e-494b-a30d-eb6dd5bb0c00/uy5LyMlY5vx9ZdTkSZjj.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/589e6ecc-7c89-4eab-9344-6b7322b9b6d9/tYFDU9ndan9HemOCkcih.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/0e4f7f35-9f5e-494b-a30d-eb6dd5bb0c00/Gk8JwLGW2YK1xBcmpuXw.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0e4f7f35-9f5e-494b-a30d-eb6dd5bb0c00/uy5LyMlY5vx9ZdTkSZjj.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/589e6ecc-7c89-4eab-9344-6b7322b9b6d9/tYFDU9ndan9HemOCkcih.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/0e4f7f35-9f5e-494b-a30d-eb6dd5bb0c00/Gk8JwLGW2YK1xBcmpuXw.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/0e4f7f35-9f5e-494b-a30d-eb6dd5bb0c00/Gk8JwLGW2YK1xBcmpuXw.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:03:56.970Z"}
+{"mfr_sku":"FP265001","pattern_name":"Sceaux nacre","color_name":"Glacier","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP265001-sceaux-nacre","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1253054b-b0cf-41a2-9d4c-5d1451a59aac/isquJMjScbtwUwe83U6f_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 127 cm - 50,00 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 127 cm - 50,00 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sceaux nacre","description":"Wide width printed wallpapers, Sceaux nacre. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1253054b-b0cf-41a2-9d4c-5d1451a59aac/isquJMjScbtwUwe83U6f.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1253054b-b0cf-41a2-9d4c-5d1451a59aac/isquJMjScbtwUwe83U6f.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/30e39e9e-33ce-4bed-9104-522557a2cb7e/OjzQTU7H178EaLE6P2HT.webp","https://static.pierrefrey.com/uploads/product/packshots/e49a0f16-6428-4236-a749-1813d52d0be0/BxRLvFza9PwYG9KG90i8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a51c505-c9e0-4c8c-95c5-6f23f03dfd87/qTGR2Nm5mR9XDNBpoNmM.webp","https://static.pierrefrey.com/uploads/product/packshots/753840b8-5f30-46ec-9c40-620b674f5e3b/YlWfiWk7cfBPmkyiJriN.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/1253054b-b0cf-41a2-9d4c-5d1451a59aac/8u6jT2MUuY1XeLuoG1TM.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1253054b-b0cf-41a2-9d4c-5d1451a59aac/isquJMjScbtwUwe83U6f.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/30e39e9e-33ce-4bed-9104-522557a2cb7e/OjzQTU7H178EaLE6P2HT.webp,https://static.pierrefrey.com/uploads/product/packshots/e49a0f16-6428-4236-a749-1813d52d0be0/BxRLvFza9PwYG9KG90i8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a51c505-c9e0-4c8c-95c5-6f23f03dfd87/qTGR2Nm5mR9XDNBpoNmM.webp,https://static.pierrefrey.com/uploads/product/packshots/753840b8-5f30-46ec-9c40-620b674f5e3b/YlWfiWk7cfBPmkyiJriN.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/1253054b-b0cf-41a2-9d4c-5d1451a59aac/8u6jT2MUuY1XeLuoG1TM.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/1253054b-b0cf-41a2-9d4c-5d1451a59aac/8u6jT2MUuY1XeLuoG1TM.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:03:57.600Z"}
+{"mfr_sku":"FP272002","pattern_name":"L'allee du roi","color_name":"Jardin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP272002-lallee-du-roi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1328fe28-2456-453e-a779-a3c8a75cb067/BriEivTLeSUUwASIFgwO_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 36 cm - 14,17 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 36 cm - 14,17 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"L'allee du roi","description":"Printed wallpapers, L'allee du roi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1328fe28-2456-453e-a779-a3c8a75cb067/BriEivTLeSUUwASIFgwO.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1328fe28-2456-453e-a779-a3c8a75cb067/BriEivTLeSUUwASIFgwO.webp","https://static.pierrefrey.com/uploads/product/packshots/beec07f4-cc33-471e-b587-f2520bafce87/E4ZwsPtrcv59tvvwb2wq.webp","https://static.pierrefrey.com/uploads/product/packshots/83556aa6-f0da-435d-8aff-b9279b003b77/ZcT7rb9BrQApsvzskZ9M.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/e5834c10-a729-478b-a6e0-42b2895aaaa3/xEcpjJvf8OcCYPtuV5hN.webp","https://static.pierrefrey.com/uploads/product/packshots/0499d6bd-87fc-4ff5-a481-ff314419759f/vXzJnK4k0Lc42kq2AWoL.webp","https://static.pierrefrey.com/uploads/product/packshots/3152081e-650a-49d7-a0dd-9940ac45802b/55CCwc1PY9nTJ8OaBOIx.webp","https://static.pierrefrey.com/uploads/product/packshots/546b00b2-13a4-4214-b042-5413fdd1a1a8/eKSwEihlnegVpG20Kyqd.webp","https://static.pierrefrey.com/uploads/product/packshots/da92a454-ea8e-40ce-b318-d66f811150b2/B1IgQrszdWTNur41zmD6.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/1328fe28-2456-453e-a779-a3c8a75cb067/XSfgfOzFxoXaNATBeZQU.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1328fe28-2456-453e-a779-a3c8a75cb067/BriEivTLeSUUwASIFgwO.webp,https://static.pierrefrey.com/uploads/product/packshots/beec07f4-cc33-471e-b587-f2520bafce87/E4ZwsPtrcv59tvvwb2wq.webp,https://static.pierrefrey.com/uploads/product/packshots/83556aa6-f0da-435d-8aff-b9279b003b77/ZcT7rb9BrQApsvzskZ9M.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/e5834c10-a729-478b-a6e0-42b2895aaaa3/xEcpjJvf8OcCYPtuV5hN.webp,https://static.pierrefrey.com/uploads/product/packshots/0499d6bd-87fc-4ff5-a481-ff314419759f/vXzJnK4k0Lc42kq2AWoL.webp,https://static.pierrefrey.com/uploads/product/packshots/3152081e-650a-49d7-a0dd-9940ac45802b/55CCwc1PY9nTJ8OaBOIx.webp,https://static.pierrefrey.com/uploads/product/packshots/546b00b2-13a4-4214-b042-5413fdd1a1a8/eKSwEihlnegVpG20Kyqd.webp,https://static.pierrefrey.com/uploads/product/packshots/da92a454-ea8e-40ce-b318-d66f811150b2/B1IgQrszdWTNur41zmD6.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/1328fe28-2456-453e-a779-a3c8a75cb067/XSfgfOzFxoXaNATBeZQU.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/1328fe28-2456-453e-a779-a3c8a75cb067/XSfgfOzFxoXaNATBeZQU.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:03:58.253Z"}
+{"mfr_sku":"FP286002","pattern_name":"Alhambra","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP286002-alhambra","list_image":"https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns - Paperbacked fabrics - Embroideries","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"43 % Silk - 39 % Acrylic - 18 % Polyester","Width":"128 cm / 50,39 inch","Repeat":"H: 66 cm - 25,00 inch | V: 40 cm - 15,74 inch | Free match","Weight":"540 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Information":"Embroidered wallcovering.Irregular appearance due to handcrafting"},"width":"128 cm / 50,39 inch","composition":"43 % Silk - 39 % Acrylic - 18 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 66 cm - 25,00 inch | V: 40 cm - 15,74 inch | Free match","weight":"540 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Alhambra","description":"Wide width printed wallpapers - Embossed patterns - Paperbacked fabrics - Embroideries, Alhambra. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/4e0d6b1a-16b7-4fd3-99b5-4a7801fd99d5/ZsG93UuodshgYWRf9GKh.webp","https://static.pierrefrey.com/uploads/product/packshots/93d864a0-cef6-472b-9c9a-c31f63c24fda/GDP9BVDuVplCOssl9tft.webp","https://static.pierrefrey.com/uploads/product/packshots/ceac60a1-a80f-43d5-8111-b1c5fc9f00b7/YJLf9bZMf4pgJKaFtuGA.webp","https://static.pierrefrey.com/uploads/product/packshots/4ca3596b-7f16-429b-b687-0db31f90c6b7/mQD0dCYjb5uhcCK7eay4.webp","https://static.pierrefrey.com/uploads/product/packshots/66fbe2ac-920a-43eb-8d50-00bb73985208/j7TFDGC3y6l4LTgdg7re.webp","https://static.pierrefrey.com/uploads/product/packshots/73b1497d-9624-4cda-af2d-3b371b63e365/ibx251Sa11CXUSTkaWki.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/14df556f-dac7-49bc-9f65-ee5038d2204e/Kuz4dxv211cf4HrCSaUe.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/4e0d6b1a-16b7-4fd3-99b5-4a7801fd99d5/ZsG93UuodshgYWRf9GKh.webp,https://static.pierrefrey.com/uploads/product/packshots/93d864a0-cef6-472b-9c9a-c31f63c24fda/GDP9BVDuVplCOssl9tft.webp,https://static.pierrefrey.com/uploads/product/packshots/ceac60a1-a80f-43d5-8111-b1c5fc9f00b7/YJLf9bZMf4pgJKaFtuGA.webp,https://static.pierrefrey.com/uploads/product/packshots/4ca3596b-7f16-429b-b687-0db31f90c6b7/mQD0dCYjb5uhcCK7eay4.webp,https://static.pierrefrey.com/uploads/product/packshots/66fbe2ac-920a-43eb-8d50-00bb73985208/j7TFDGC3y6l4LTgdg7re.webp,https://static.pierrefrey.com/uploads/product/packshots/73b1497d-9624-4cda-af2d-3b371b63e365/ibx251Sa11CXUSTkaWki.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/14df556f-dac7-49bc-9f65-ee5038d2204e/Kuz4dxv211cf4HrCSaUe.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/14df556f-dac7-49bc-9f65-ee5038d2204e/Kuz4dxv211cf4HrCSaUe.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:03:59.014Z"}
+{"mfr_sku":"FP260001","pattern_name":"L'atelier d'isabelle 2","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP260001-latelier-disabelle-2","list_image":"https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics - Panoramic wallpapers - Printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Full panoramic  136 cm x 300 cm ( 1 lengths 136 cm x 300 cm) -  53,54 in x 118,11 in( 1 lengths  53,54 in x 118,11 in)","Backing":"NON WOVEN","Composition":"100 % Cotton","Width":"136 cm / 53,54 inch","Repeat":"H: 136 cm - 53,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"450 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Sold as a complete artwork","Information":"1 roll = 1 panel"},"width":"136 cm / 53,54 inch","composition":"100 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 136 cm - 53,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"450 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Full panoramic  136 cm x 300 cm ( 1 lengths 136 cm x 300 cm) -  53,54 in x 118,11 in( 1 lengths  53,54 in x 118,11 in)","roll_length":null,"collection":"L'atelier d'isabelle 2","description":"Wide width printed wallpapers - Paperbacked fabrics - Panoramic wallpapers - Printed wallpapers, L'atelier d'isabelle 2. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/8adc1f5c-8536-40bb-bf7c-3f09a2b9a4d2/n0w644DE0YCKpJjfRkqG.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/17c40f40-51b7-418e-bb34-b480eb0c8ed2/65DFStSYKPlNQK5HWxeN.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/8adc1f5c-8536-40bb-bf7c-3f09a2b9a4d2/n0w644DE0YCKpJjfRkqG.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/17c40f40-51b7-418e-bb34-b480eb0c8ed2/65DFStSYKPlNQK5HWxeN.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/17c40f40-51b7-418e-bb34-b480eb0c8ed2/65DFStSYKPlNQK5HWxeN.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:03:59.841Z"}
+{"mfr_sku":"FP279001","pattern_name":"Courtine","color_name":"Vegetal","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP279001-courtine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/202426a7-e2d4-4d39-83ab-09d949ed18db/yynbaB8p8jbmrHdBu30X_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Half drop repeat","Weight":"415 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Half drop repeat","weight":"415 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Courtine","description":"Small width printed wallpapers - Vinyls - Printed wallpapers, Courtine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/202426a7-e2d4-4d39-83ab-09d949ed18db/yynbaB8p8jbmrHdBu30X.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/202426a7-e2d4-4d39-83ab-09d949ed18db/yynbaB8p8jbmrHdBu30X.webp","https://static.pierrefrey.com/uploads/product/packshots/a27abd46-fb96-4915-8f89-55a1390839e7/G8HAp8wwr6YwnsjDnX7f.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/f58948ff-ee1f-433c-93d4-d6d3c2070dac/VIydmRPxXE4zZGc1cDjD.webp","https://static.pierrefrey.com/uploads/product/packshots/960fe9a1-5ca5-4b1d-9194-136b499f7f83/VbhwHcext1pOShv0kgSx.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/202426a7-e2d4-4d39-83ab-09d949ed18db/DXXErnAPuieJMPoyZxhg.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/202426a7-e2d4-4d39-83ab-09d949ed18db/yynbaB8p8jbmrHdBu30X.webp,https://static.pierrefrey.com/uploads/product/packshots/a27abd46-fb96-4915-8f89-55a1390839e7/G8HAp8wwr6YwnsjDnX7f.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/f58948ff-ee1f-433c-93d4-d6d3c2070dac/VIydmRPxXE4zZGc1cDjD.webp,https://static.pierrefrey.com/uploads/product/packshots/960fe9a1-5ca5-4b1d-9194-136b499f7f83/VbhwHcext1pOShv0kgSx.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/202426a7-e2d4-4d39-83ab-09d949ed18db/DXXErnAPuieJMPoyZxhg.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/202426a7-e2d4-4d39-83ab-09d949ed18db/DXXErnAPuieJMPoyZxhg.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:00.668Z"}
+{"mfr_sku":"FP291001","pattern_name":"Alencon","color_name":"Mousse","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP291001-alencon","list_image":"https://static.pierrefrey.com/uploads/product/packshots/20c66cc2-f5d0-4ec4-b4f6-56d6f73ddb94/JJMEJgfj0lPaoupaBGBR_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"91 % Viscose - 5 % Polyester - 4 % Cotton","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 160 cm - 62,99 inch | Straight repeat","Weight":"540 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable"},"width":"140 cm / 55,11 inch","composition":"91 % Viscose - 5 % Polyester - 4 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 160 cm - 62,99 inch | Straight repeat","weight":"540 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Alencon","description":"Paperbacked fabrics, Alencon. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/20c66cc2-f5d0-4ec4-b4f6-56d6f73ddb94/JJMEJgfj0lPaoupaBGBR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/20c66cc2-f5d0-4ec4-b4f6-56d6f73ddb94/JJMEJgfj0lPaoupaBGBR.webp","https://static.pierrefrey.com/uploads/product/packshots/ed855c7b-8a74-4bfc-a641-d415a7eeac14/R8K3yCoLzus4E8AAFUZv.webp","https://static.pierrefrey.com/uploads/product/packshots/cf80eee3-ce36-4c56-8af0-dea8afd2d840/MVu2CtCd4lQoLgQCkW02.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/b64e308e-6a6b-4e14-8b51-37ff73478051/Dg8If04J1mSl53QJEx9z.webp","https://static.pierrefrey.com/uploads/product/packshots/9c814a2f-f218-4a8d-acc5-64dd4722a606/BhZV2YhykrVUda2wcUSW.webp","https://static.pierrefrey.com/uploads/product/packshots/f26a10e8-d427-48a1-95ed-f7bc5aa862e0/Q9K5mxNe5ssR69qvz2aA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/20c66cc2-f5d0-4ec4-b4f6-56d6f73ddb94/BlFIxX0ZRkoxlCsL7gfu.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/20c66cc2-f5d0-4ec4-b4f6-56d6f73ddb94/JJMEJgfj0lPaoupaBGBR.webp,https://static.pierrefrey.com/uploads/product/packshots/ed855c7b-8a74-4bfc-a641-d415a7eeac14/R8K3yCoLzus4E8AAFUZv.webp,https://static.pierrefrey.com/uploads/product/packshots/cf80eee3-ce36-4c56-8af0-dea8afd2d840/MVu2CtCd4lQoLgQCkW02.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/b64e308e-6a6b-4e14-8b51-37ff73478051/Dg8If04J1mSl53QJEx9z.webp,https://static.pierrefrey.com/uploads/product/packshots/9c814a2f-f218-4a8d-acc5-64dd4722a606/BhZV2YhykrVUda2wcUSW.webp,https://static.pierrefrey.com/uploads/product/packshots/f26a10e8-d427-48a1-95ed-f7bc5aa862e0/Q9K5mxNe5ssR69qvz2aA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/20c66cc2-f5d0-4ec4-b4f6-56d6f73ddb94/BlFIxX0ZRkoxlCsL7gfu.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/20c66cc2-f5d0-4ec4-b4f6-56d6f73ddb94/BlFIxX0ZRkoxlCsL7gfu.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:01.734Z"}
+{"mfr_sku":"FP276001","pattern_name":"Domaine royal","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP276001-domaine-royal","list_image":"https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 88 cm - 34,64 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 88 cm - 34,64 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Domaine royal","description":"Wide width printed wallpapers, Domaine royal. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/34a3f92d-6a01-4f12-bc8d-35c7b13218ca/TZ7dPuM3AcVk0XaMWzDI.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/20dbc2d9-781a-4a93-aec7-09ba75ecc294/W9f6V97Q6ReVPrHUTbfM.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/34a3f92d-6a01-4f12-bc8d-35c7b13218ca/TZ7dPuM3AcVk0XaMWzDI.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/20dbc2d9-781a-4a93-aec7-09ba75ecc294/W9f6V97Q6ReVPrHUTbfM.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/20dbc2d9-781a-4a93-aec7-09ba75ecc294/W9f6V97Q6ReVPrHUTbfM.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:02.600Z"}
+{"mfr_sku":"FP256001","pattern_name":"Frida","color_name":"Soleil","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP256001-frida","list_image":"https://static.pierrefrey.com/uploads/product/packshots/276357f4-5516-4528-adec-234f823b479a/Dgb92J3WhHSOa7hbQM9R_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Embossed patterns","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 98 cm - 38,58 inch | Free match","Weight":"375 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"3D printing"},"width":"70 cm / 27,55 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 98 cm - 38,58 inch | Free match","weight":"375 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Frida","description":"Small width printed wallpapers - Embossed patterns, Frida. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/276357f4-5516-4528-adec-234f823b479a/Dgb92J3WhHSOa7hbQM9R.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/276357f4-5516-4528-adec-234f823b479a/Dgb92J3WhHSOa7hbQM9R.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/2f1aa51d-35aa-46b9-be2c-e80b12188f9f/gqMwTI8pJvZVtCicOqS0.webp","https://static.pierrefrey.com/uploads/product/packshots/03ac1a42-2e25-407d-bcf9-381ea07313e0/TQuxV0NuYlreeGIpnBsX.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/276357f4-5516-4528-adec-234f823b479a/dcPo8tZMLZjo5NE9gTHR.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/276357f4-5516-4528-adec-234f823b479a/Dgb92J3WhHSOa7hbQM9R.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/2f1aa51d-35aa-46b9-be2c-e80b12188f9f/gqMwTI8pJvZVtCicOqS0.webp,https://static.pierrefrey.com/uploads/product/packshots/03ac1a42-2e25-407d-bcf9-381ea07313e0/TQuxV0NuYlreeGIpnBsX.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/276357f4-5516-4528-adec-234f823b479a/dcPo8tZMLZjo5NE9gTHR.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/276357f4-5516-4528-adec-234f823b479a/dcPo8tZMLZjo5NE9gTHR.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:03.439Z"}
+{"mfr_sku":"FP269004","pattern_name":"Tilly","color_name":"Nocturne","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP269004-tilly","list_image":"https://static.pierrefrey.com/uploads/product/packshots/28b3413b-cfe7-4cd5-95be-c53d8caaf469/JaviJz1SWTf0QT5MN2ff_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch | V: 21 cm - 8,26 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 21 cm - 8,26 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tilly","description":"Printed wallpapers, Tilly. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/28b3413b-cfe7-4cd5-95be-c53d8caaf469/JaviJz1SWTf0QT5MN2ff.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/28b3413b-cfe7-4cd5-95be-c53d8caaf469/JaviJz1SWTf0QT5MN2ff.webp","https://static.pierrefrey.com/uploads/product/packshots/ca0bc95c-16ba-40c7-ae6c-a11289c78161/ZKQZIW6BFSM3ykNHzD4U.webp","https://static.pierrefrey.com/uploads/product/packshots/b14e1f89-c94e-4ff1-8b40-ba1cab9963e0/CIBfu2mhZX8YpGhz9Nba.webp","https://static.pierrefrey.com/uploads/product/packshots/6ba35144-b148-4296-a333-77851f7dc731/en1XoEofn8EcIMznXAsi.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/f32f06b5-11cd-489c-ae01-ab250406060c/AP5oSOs6ZNRPGKukeKiA.webp","https://static.pierrefrey.com/uploads/product/packshots/bedd23f4-e340-411c-a142-d70ffa7f977d/qOEfUreYcYiNaPcE8bmV.webp","https://static.pierrefrey.com/uploads/product/packshots/59ff5eea-9682-42ce-8bf4-1503dec72acc/fcqc2YcQijgQHhqBj6y0.webp","https://static.pierrefrey.com/uploads/product/packshots/e00ca197-b68a-4181-8b1d-7051f4747dd5/9uobPhrAIeH2Ncx1qTJN.webp","https://static.pierrefrey.com/uploads/product/packshots/5590f4ad-3016-40ca-9100-379fe09ab2a3/8hECqwptm4RB8xxTUk8P.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/28b3413b-cfe7-4cd5-95be-c53d8caaf469/6qgimkcKj6By3Sl3APC9.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/28b3413b-cfe7-4cd5-95be-c53d8caaf469/JaviJz1SWTf0QT5MN2ff.webp,https://static.pierrefrey.com/uploads/product/packshots/ca0bc95c-16ba-40c7-ae6c-a11289c78161/ZKQZIW6BFSM3ykNHzD4U.webp,https://static.pierrefrey.com/uploads/product/packshots/b14e1f89-c94e-4ff1-8b40-ba1cab9963e0/CIBfu2mhZX8YpGhz9Nba.webp,https://static.pierrefrey.com/uploads/product/packshots/6ba35144-b148-4296-a333-77851f7dc731/en1XoEofn8EcIMznXAsi.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/f32f06b5-11cd-489c-ae01-ab250406060c/AP5oSOs6ZNRPGKukeKiA.webp,https://static.pierrefrey.com/uploads/product/packshots/bedd23f4-e340-411c-a142-d70ffa7f977d/qOEfUreYcYiNaPcE8bmV.webp,https://static.pierrefrey.com/uploads/product/packshots/59ff5eea-9682-42ce-8bf4-1503dec72acc/fcqc2YcQijgQHhqBj6y0.webp,https://static.pierrefrey.com/uploads/product/packshots/e00ca197-b68a-4181-8b1d-7051f4747dd5/9uobPhrAIeH2Ncx1qTJN.webp,https://static.pierrefrey.com/uploads/product/packshots/5590f4ad-3016-40ca-9100-379fe09ab2a3/8hECqwptm4RB8xxTUk8P.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/28b3413b-cfe7-4cd5-95be-c53d8caaf469/6qgimkcKj6By3Sl3APC9.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/28b3413b-cfe7-4cd5-95be-c53d8caaf469/6qgimkcKj6By3Sl3APC9.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:04.231Z"}
+{"mfr_sku":"FP270003","pattern_name":"Belle de provence","color_name":"Emeraude","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP270003-belle-de-provence","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 16 cm - 6,29 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 16 cm - 6,29 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Belle de provence","description":"Printed wallpapers, Belle de provence. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/UZ3iBsxYjTju4sAYSW27.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/UZ3iBsxYjTju4sAYSW27.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/UZ3iBsxYjTju4sAYSW27.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:05.137Z"}
+{"mfr_sku":"FP254001","pattern_name":"Cactus","color_name":"Nacre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP254001-cactus","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2e2ed94d-ebca-4991-b032-77c1a84ee4ca/b2qp3SSSogAFpjbkDrF2_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Straws and similar materials","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","Width":"134 cm / 52,75 inch","Repeat":"H: 34 cm - 13,00 inch | V: 34 cm - 13,38 inch | Straight repeat","Weight":"340 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Information":"Panel effect"},"width":"134 cm / 52,75 inch","composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 34 cm - 13,38 inch | Straight repeat","weight":"340 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cactus","description":"Wide width printed wallpapers - Straws and similar materials, Cactus. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2e2ed94d-ebca-4991-b032-77c1a84ee4ca/b2qp3SSSogAFpjbkDrF2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2e2ed94d-ebca-4991-b032-77c1a84ee4ca/b2qp3SSSogAFpjbkDrF2.webp","https://static.pierrefrey.com/uploads/product/packshots/97d2d497-827a-4bb2-82f2-078341222344/RA8hnGnqwnbdQNbjxDO2.webp","https://static.pierrefrey.com/uploads/product/packshots/7a9bcca7-4ee1-40e3-be0d-bf11ffff5fc3/SY4FtDfNqc8kBSGWeBW9.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/2e2ed94d-ebca-4991-b032-77c1a84ee4ca/U1kzSj5Kb6cdIgmaFB5l.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2e2ed94d-ebca-4991-b032-77c1a84ee4ca/b2qp3SSSogAFpjbkDrF2.webp,https://static.pierrefrey.com/uploads/product/packshots/97d2d497-827a-4bb2-82f2-078341222344/RA8hnGnqwnbdQNbjxDO2.webp,https://static.pierrefrey.com/uploads/product/packshots/7a9bcca7-4ee1-40e3-be0d-bf11ffff5fc3/SY4FtDfNqc8kBSGWeBW9.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/2e2ed94d-ebca-4991-b032-77c1a84ee4ca/U1kzSj5Kb6cdIgmaFB5l.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/2e2ed94d-ebca-4991-b032-77c1a84ee4ca/U1kzSj5Kb6cdIgmaFB5l.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:05.905Z"}
+{"mfr_sku":"FP289001","pattern_name":"Harcourt","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP289001-harcourt","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2e898bee-4fce-4dff-b4a7-62f01f253c59/6wz8AzSynYnQ7IN6MoaU_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"131 cm / 51,57 inch","Repeat":"H: 66 cm - 25,00 inch | V: 42 cm - 16,53 inch | Straight repeat","Weight":"325 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A"},"width":"131 cm / 51,57 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 66 cm - 25,00 inch | V: 42 cm - 16,53 inch | Straight repeat","weight":"325 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Harcourt","description":"Wide width printed wallpapers - Paperbacked fabrics - Printed wallpapers, Harcourt. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2e898bee-4fce-4dff-b4a7-62f01f253c59/6wz8AzSynYnQ7IN6MoaU.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2e898bee-4fce-4dff-b4a7-62f01f253c59/6wz8AzSynYnQ7IN6MoaU.webp","https://static.pierrefrey.com/uploads/product/packshots/dc123e31-15a3-4ffd-968f-4e49a5b0e212/e8uwXpm04CG6frPX3EiR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a077868-0074-4463-b6d1-a07a6eb386da/jDPfwOOVdGMSS2HZnl4n.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/e8c6d227-575b-4d06-b82c-784bbf98d9d4/EKpCZSWPKUg8hWCAoRpB.webp","https://static.pierrefrey.com/uploads/product/packshots/e7c0d540-23d8-47e4-91cf-e3c3a782fe9d/XZh3zm1nOVAdYb8cDQkV.webp","https://static.pierrefrey.com/uploads/product/packshots/09733d6b-7156-46ab-b1ac-8157c2aa7997/5OPxg5LgvHlDppXj0b10.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/2e898bee-4fce-4dff-b4a7-62f01f253c59/GXT9pGPFF3HDjELF7lcY.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2e898bee-4fce-4dff-b4a7-62f01f253c59/6wz8AzSynYnQ7IN6MoaU.webp,https://static.pierrefrey.com/uploads/product/packshots/dc123e31-15a3-4ffd-968f-4e49a5b0e212/e8uwXpm04CG6frPX3EiR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a077868-0074-4463-b6d1-a07a6eb386da/jDPfwOOVdGMSS2HZnl4n.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/e8c6d227-575b-4d06-b82c-784bbf98d9d4/EKpCZSWPKUg8hWCAoRpB.webp,https://static.pierrefrey.com/uploads/product/packshots/e7c0d540-23d8-47e4-91cf-e3c3a782fe9d/XZh3zm1nOVAdYb8cDQkV.webp,https://static.pierrefrey.com/uploads/product/packshots/09733d6b-7156-46ab-b1ac-8157c2aa7997/5OPxg5LgvHlDppXj0b10.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/2e898bee-4fce-4dff-b4a7-62f01f253c59/GXT9pGPFF3HDjELF7lcY.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/2e898bee-4fce-4dff-b4a7-62f01f253c59/GXT9pGPFF3HDjELF7lcY.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:06.580Z"}
+{"mfr_sku":"FP285002","pattern_name":"Le verger enchante","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP285002-le-verger-enchante","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3051a548-33e4-4bfb-ba54-98a1dca80189/wkVGKAqXermxEqsKV7WG_251x335_webp.webp","specs":{"Type":"Embossed patterns - Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"NON WOVEN","Composition":"48 % Straw - 33 % Viscose - 19 % Polyester","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 120 cm - 47,24 inch | Free match","Weight":"580 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting"},"width":"86 cm / 33,85 inch","composition":"48 % Straw - 33 % Viscose - 19 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 86 cm - 33,00 inch | V: 120 cm - 47,24 inch | Free match","weight":"580 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Le verger enchante","description":"Embossed patterns - Straws and similar materials - Embroideries, Le verger enchante. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3051a548-33e4-4bfb-ba54-98a1dca80189/wkVGKAqXermxEqsKV7WG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3051a548-33e4-4bfb-ba54-98a1dca80189/wkVGKAqXermxEqsKV7WG.webp","https://static.pierrefrey.com/uploads/product/packshots/8c2eddd7-ff9f-41fa-ae41-eabad4b3a314/jRmAgXYvWe3UgTT6v0js.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/3051a548-33e4-4bfb-ba54-98a1dca80189/tQPQePFxLWgcbRjAbNYG.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3051a548-33e4-4bfb-ba54-98a1dca80189/wkVGKAqXermxEqsKV7WG.webp,https://static.pierrefrey.com/uploads/product/packshots/8c2eddd7-ff9f-41fa-ae41-eabad4b3a314/jRmAgXYvWe3UgTT6v0js.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/3051a548-33e4-4bfb-ba54-98a1dca80189/tQPQePFxLWgcbRjAbNYG.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/3051a548-33e4-4bfb-ba54-98a1dca80189/tQPQePFxLWgcbRjAbNYG.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:07.325Z"}
+{"mfr_sku":"FP264001","pattern_name":"Sceaux","color_name":"Romantique","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP264001-sceaux","list_image":"https://static.pierrefrey.com/uploads/product/packshots/30e39e9e-33ce-4bed-9104-522557a2cb7e/OjzQTU7H178EaLE6P2HT_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 128 cm - 50,39 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 128 cm - 50,39 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sceaux","description":"Wide width printed wallpapers, Sceaux. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/30e39e9e-33ce-4bed-9104-522557a2cb7e/OjzQTU7H178EaLE6P2HT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/30e39e9e-33ce-4bed-9104-522557a2cb7e/OjzQTU7H178EaLE6P2HT.webp","https://static.pierrefrey.com/uploads/product/packshots/8a51c505-c9e0-4c8c-95c5-6f23f03dfd87/qTGR2Nm5mR9XDNBpoNmM.webp","https://static.pierrefrey.com/uploads/product/packshots/753840b8-5f30-46ec-9c40-620b674f5e3b/YlWfiWk7cfBPmkyiJriN.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/1253054b-b0cf-41a2-9d4c-5d1451a59aac/isquJMjScbtwUwe83U6f.webp","https://static.pierrefrey.com/uploads/product/packshots/e49a0f16-6428-4236-a749-1813d52d0be0/BxRLvFza9PwYG9KG90i8.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/30e39e9e-33ce-4bed-9104-522557a2cb7e/1oAV7QAG26WfcBPSRfGC.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/30e39e9e-33ce-4bed-9104-522557a2cb7e/OjzQTU7H178EaLE6P2HT.webp,https://static.pierrefrey.com/uploads/product/packshots/8a51c505-c9e0-4c8c-95c5-6f23f03dfd87/qTGR2Nm5mR9XDNBpoNmM.webp,https://static.pierrefrey.com/uploads/product/packshots/753840b8-5f30-46ec-9c40-620b674f5e3b/YlWfiWk7cfBPmkyiJriN.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/1253054b-b0cf-41a2-9d4c-5d1451a59aac/isquJMjScbtwUwe83U6f.webp,https://static.pierrefrey.com/uploads/product/packshots/e49a0f16-6428-4236-a749-1813d52d0be0/BxRLvFza9PwYG9KG90i8.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/30e39e9e-33ce-4bed-9104-522557a2cb7e/1oAV7QAG26WfcBPSRfGC.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/30e39e9e-33ce-4bed-9104-522557a2cb7e/1oAV7QAG26WfcBPSRfGC.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:08.065Z"}
+{"mfr_sku":"FP271001","pattern_name":"L'allee du roi flock","color_name":"Travertin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP271001-lallee-du-roi-flock","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3152081e-650a-49d7-a0dd-9940ac45802b/55CCwc1PY9nTJ8OaBOIx_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 36 cm - 14,17 inch | Straight repeat","Weight":"200 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Notes":"Traditional printing technique | Raised pattern"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 36 cm - 14,17 inch | Straight repeat","weight":"200 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"L'allee du roi flock","description":"Small width printed wallpapers - Paperbacked fabrics, L'allee du roi flock. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3152081e-650a-49d7-a0dd-9940ac45802b/55CCwc1PY9nTJ8OaBOIx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3152081e-650a-49d7-a0dd-9940ac45802b/55CCwc1PY9nTJ8OaBOIx.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/beec07f4-cc33-471e-b587-f2520bafce87/E4ZwsPtrcv59tvvwb2wq.webp","https://static.pierrefrey.com/uploads/product/packshots/e5834c10-a729-478b-a6e0-42b2895aaaa3/xEcpjJvf8OcCYPtuV5hN.webp","https://static.pierrefrey.com/uploads/product/packshots/1328fe28-2456-453e-a779-a3c8a75cb067/BriEivTLeSUUwASIFgwO.webp","https://static.pierrefrey.com/uploads/product/packshots/83556aa6-f0da-435d-8aff-b9279b003b77/ZcT7rb9BrQApsvzskZ9M.webp","https://static.pierrefrey.com/uploads/product/packshots/546b00b2-13a4-4214-b042-5413fdd1a1a8/eKSwEihlnegVpG20Kyqd.webp","https://static.pierrefrey.com/uploads/product/packshots/da92a454-ea8e-40ce-b318-d66f811150b2/B1IgQrszdWTNur41zmD6.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/3152081e-650a-49d7-a0dd-9940ac45802b/2l1mRcf39Vsv8CERHu4i.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3152081e-650a-49d7-a0dd-9940ac45802b/55CCwc1PY9nTJ8OaBOIx.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/beec07f4-cc33-471e-b587-f2520bafce87/E4ZwsPtrcv59tvvwb2wq.webp,https://static.pierrefrey.com/uploads/product/packshots/e5834c10-a729-478b-a6e0-42b2895aaaa3/xEcpjJvf8OcCYPtuV5hN.webp,https://static.pierrefrey.com/uploads/product/packshots/1328fe28-2456-453e-a779-a3c8a75cb067/BriEivTLeSUUwASIFgwO.webp,https://static.pierrefrey.com/uploads/product/packshots/83556aa6-f0da-435d-8aff-b9279b003b77/ZcT7rb9BrQApsvzskZ9M.webp,https://static.pierrefrey.com/uploads/product/packshots/546b00b2-13a4-4214-b042-5413fdd1a1a8/eKSwEihlnegVpG20Kyqd.webp,https://static.pierrefrey.com/uploads/product/packshots/da92a454-ea8e-40ce-b318-d66f811150b2/B1IgQrszdWTNur41zmD6.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/3152081e-650a-49d7-a0dd-9940ac45802b/2l1mRcf39Vsv8CERHu4i.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/3152081e-650a-49d7-a0dd-9940ac45802b/2l1mRcf39Vsv8CERHu4i.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:08.692Z"}
+{"mfr_sku":"FP263002","pattern_name":"Youth","color_name":"Orangerie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP263002-youth","list_image":"https://static.pierrefrey.com/uploads/product/packshots/38233a56-9106-487d-894b-23f04ea5ed32/VI8qQ0DFv8sm7l4M0Nx0_251x335_webp.webp","specs":{"Type":"End-on-end threads - Printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 158 cm - 62,20 inch | Straight repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A"},"width":"87 cm / 34,25 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 158 cm - 62,20 inch | Straight repeat","weight":"240 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Youth","description":"End-on-end threads - Printed wallpapers, Youth. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/38233a56-9106-487d-894b-23f04ea5ed32/VI8qQ0DFv8sm7l4M0Nx0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/38233a56-9106-487d-894b-23f04ea5ed32/VI8qQ0DFv8sm7l4M0Nx0.webp","https://static.pierrefrey.com/uploads/product/packshots/504f9f32-064f-4283-9ec7-a2876a87c608/ry4IVfdhsCJ1NUvSfe79.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/4961a107-ded3-4dea-ba87-a6cb0ba1fd15/05QElRdUtmE4rwJ0QqKx.webp","https://static.pierrefrey.com/uploads/product/packshots/273188ba-93dd-42b1-ac88-315f35e79b0a/ItBKdwc4dEosW8fQm0A8.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/38233a56-9106-487d-894b-23f04ea5ed32/2p4j5ILxH0ddZDAAklLe.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/38233a56-9106-487d-894b-23f04ea5ed32/VI8qQ0DFv8sm7l4M0Nx0.webp,https://static.pierrefrey.com/uploads/product/packshots/504f9f32-064f-4283-9ec7-a2876a87c608/ry4IVfdhsCJ1NUvSfe79.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/4961a107-ded3-4dea-ba87-a6cb0ba1fd15/05QElRdUtmE4rwJ0QqKx.webp,https://static.pierrefrey.com/uploads/product/packshots/273188ba-93dd-42b1-ac88-315f35e79b0a/ItBKdwc4dEosW8fQm0A8.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/38233a56-9106-487d-894b-23f04ea5ed32/2p4j5ILxH0ddZDAAklLe.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/38233a56-9106-487d-894b-23f04ea5ed32/2p4j5ILxH0ddZDAAklLe.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:09.494Z"}
+{"mfr_sku":"FP289003","pattern_name":"Harcourt","color_name":"Carmin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP289003-harcourt","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3a077868-0074-4463-b6d1-a07a6eb386da/jDPfwOOVdGMSS2HZnl4n_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"131 cm / 51,57 inch","Repeat":"H: 66 cm - 25,00 inch | V: 42 cm - 16,53 inch | Straight repeat","Weight":"325 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A"},"width":"131 cm / 51,57 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 66 cm - 25,00 inch | V: 42 cm - 16,53 inch | Straight repeat","weight":"325 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Harcourt","description":"Wide width printed wallpapers - Paperbacked fabrics - Printed wallpapers, Harcourt. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3a077868-0074-4463-b6d1-a07a6eb386da/jDPfwOOVdGMSS2HZnl4n.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3a077868-0074-4463-b6d1-a07a6eb386da/jDPfwOOVdGMSS2HZnl4n.webp","https://static.pierrefrey.com/uploads/product/packshots/2e898bee-4fce-4dff-b4a7-62f01f253c59/6wz8AzSynYnQ7IN6MoaU.webp","https://static.pierrefrey.com/uploads/product/packshots/dc123e31-15a3-4ffd-968f-4e49a5b0e212/e8uwXpm04CG6frPX3EiR.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/e8c6d227-575b-4d06-b82c-784bbf98d9d4/EKpCZSWPKUg8hWCAoRpB.webp","https://static.pierrefrey.com/uploads/product/packshots/e7c0d540-23d8-47e4-91cf-e3c3a782fe9d/XZh3zm1nOVAdYb8cDQkV.webp","https://static.pierrefrey.com/uploads/product/packshots/09733d6b-7156-46ab-b1ac-8157c2aa7997/5OPxg5LgvHlDppXj0b10.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/3a077868-0074-4463-b6d1-a07a6eb386da/2KsiX6K6z5WhzrvgJj4Z.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3a077868-0074-4463-b6d1-a07a6eb386da/jDPfwOOVdGMSS2HZnl4n.webp,https://static.pierrefrey.com/uploads/product/packshots/2e898bee-4fce-4dff-b4a7-62f01f253c59/6wz8AzSynYnQ7IN6MoaU.webp,https://static.pierrefrey.com/uploads/product/packshots/dc123e31-15a3-4ffd-968f-4e49a5b0e212/e8uwXpm04CG6frPX3EiR.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/e8c6d227-575b-4d06-b82c-784bbf98d9d4/EKpCZSWPKUg8hWCAoRpB.webp,https://static.pierrefrey.com/uploads/product/packshots/e7c0d540-23d8-47e4-91cf-e3c3a782fe9d/XZh3zm1nOVAdYb8cDQkV.webp,https://static.pierrefrey.com/uploads/product/packshots/09733d6b-7156-46ab-b1ac-8157c2aa7997/5OPxg5LgvHlDppXj0b10.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/3a077868-0074-4463-b6d1-a07a6eb386da/2KsiX6K6z5WhzrvgJj4Z.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/3a077868-0074-4463-b6d1-a07a6eb386da/2KsiX6K6z5WhzrvgJj4Z.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:10.211Z"}
+{"mfr_sku":"FP268002","pattern_name":"Les grenades","color_name":"Sauge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP268002-les-grenades","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3e305259-f236-4a38-bc96-127c6c0a51a3/n9zfy1hcfEjcuXs0qUYp_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Jute","Width":"115 cm / 45,27 inch","Repeat":"H: 57 cm - 22,00 inch | V: 58 cm - 22,83 inch | Straight repeat","Weight":"470 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"115 cm / 45,27 inch","composition":"100 % Jute","material":"NON WOVEN","pattern_repeat":"H: 57 cm - 22,00 inch | V: 58 cm - 22,83 inch | Straight repeat","weight":"470 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les grenades","description":"Wide width printed wallpapers - Paperbacked fabrics, Les grenades. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3e305259-f236-4a38-bc96-127c6c0a51a3/n9zfy1hcfEjcuXs0qUYp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3e305259-f236-4a38-bc96-127c6c0a51a3/n9zfy1hcfEjcuXs0qUYp.webp","https://static.pierrefrey.com/uploads/product/packshots/fe1b7fe6-a8a5-4fdd-a61a-48be47e69034/pxVIIzHNvp5qkPWUFEmT.webp","https://static.pierrefrey.com/uploads/product/packshots/4116d6b7-efb7-4c83-b9fb-99bbc02fbed5/jKsf9z49VL5I1yKrMzfh.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/685c5cd1-a924-41b1-9f03-56af20fb0d37/tC7Z4IXMDrrTKN8o1263.webp","https://static.pierrefrey.com/uploads/product/packshots/d84a7061-d840-460c-bd2e-1a42dac56532/Au4lXdwYclmpvewzdWYb.webp","https://static.pierrefrey.com/uploads/product/packshots/cad4443a-ece5-4710-97d3-6e5de25f6076/7NALd1bEt1liXIDn19Zk.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/3e305259-f236-4a38-bc96-127c6c0a51a3/vdu1yRFJbYqfnQeKJVgr.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3e305259-f236-4a38-bc96-127c6c0a51a3/n9zfy1hcfEjcuXs0qUYp.webp,https://static.pierrefrey.com/uploads/product/packshots/fe1b7fe6-a8a5-4fdd-a61a-48be47e69034/pxVIIzHNvp5qkPWUFEmT.webp,https://static.pierrefrey.com/uploads/product/packshots/4116d6b7-efb7-4c83-b9fb-99bbc02fbed5/jKsf9z49VL5I1yKrMzfh.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/685c5cd1-a924-41b1-9f03-56af20fb0d37/tC7Z4IXMDrrTKN8o1263.webp,https://static.pierrefrey.com/uploads/product/packshots/d84a7061-d840-460c-bd2e-1a42dac56532/Au4lXdwYclmpvewzdWYb.webp,https://static.pierrefrey.com/uploads/product/packshots/cad4443a-ece5-4710-97d3-6e5de25f6076/7NALd1bEt1liXIDn19Zk.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/3e305259-f236-4a38-bc96-127c6c0a51a3/vdu1yRFJbYqfnQeKJVgr.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/3e305259-f236-4a38-bc96-127c6c0a51a3/vdu1yRFJbYqfnQeKJVgr.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:10.849Z"}
+{"mfr_sku":"FP268003","pattern_name":"Les grenades","color_name":"Indigo","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP268003-les-grenades","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4116d6b7-efb7-4c83-b9fb-99bbc02fbed5/jKsf9z49VL5I1yKrMzfh_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Jute","Width":"115 cm / 45,27 inch","Repeat":"H: 57 cm - 22,00 inch | V: 58 cm - 22,83 inch | Straight repeat","Weight":"470 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"115 cm / 45,27 inch","composition":"100 % Jute","material":"NON WOVEN","pattern_repeat":"H: 57 cm - 22,00 inch | V: 58 cm - 22,83 inch | Straight repeat","weight":"470 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les grenades","description":"Wide width printed wallpapers - Paperbacked fabrics, Les grenades. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4116d6b7-efb7-4c83-b9fb-99bbc02fbed5/jKsf9z49VL5I1yKrMzfh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4116d6b7-efb7-4c83-b9fb-99bbc02fbed5/jKsf9z49VL5I1yKrMzfh.webp","https://static.pierrefrey.com/uploads/product/packshots/fe1b7fe6-a8a5-4fdd-a61a-48be47e69034/pxVIIzHNvp5qkPWUFEmT.webp","https://static.pierrefrey.com/uploads/product/packshots/3e305259-f236-4a38-bc96-127c6c0a51a3/n9zfy1hcfEjcuXs0qUYp.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/685c5cd1-a924-41b1-9f03-56af20fb0d37/tC7Z4IXMDrrTKN8o1263.webp","https://static.pierrefrey.com/uploads/product/packshots/d84a7061-d840-460c-bd2e-1a42dac56532/Au4lXdwYclmpvewzdWYb.webp","https://static.pierrefrey.com/uploads/product/packshots/cad4443a-ece5-4710-97d3-6e5de25f6076/7NALd1bEt1liXIDn19Zk.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/4116d6b7-efb7-4c83-b9fb-99bbc02fbed5/AgSUXC2ta6fEto2IseCO.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4116d6b7-efb7-4c83-b9fb-99bbc02fbed5/jKsf9z49VL5I1yKrMzfh.webp,https://static.pierrefrey.com/uploads/product/packshots/fe1b7fe6-a8a5-4fdd-a61a-48be47e69034/pxVIIzHNvp5qkPWUFEmT.webp,https://static.pierrefrey.com/uploads/product/packshots/3e305259-f236-4a38-bc96-127c6c0a51a3/n9zfy1hcfEjcuXs0qUYp.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/685c5cd1-a924-41b1-9f03-56af20fb0d37/tC7Z4IXMDrrTKN8o1263.webp,https://static.pierrefrey.com/uploads/product/packshots/d84a7061-d840-460c-bd2e-1a42dac56532/Au4lXdwYclmpvewzdWYb.webp,https://static.pierrefrey.com/uploads/product/packshots/cad4443a-ece5-4710-97d3-6e5de25f6076/7NALd1bEt1liXIDn19Zk.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/4116d6b7-efb7-4c83-b9fb-99bbc02fbed5/AgSUXC2ta6fEto2IseCO.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/4116d6b7-efb7-4c83-b9fb-99bbc02fbed5/AgSUXC2ta6fEto2IseCO.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:11.624Z"}
+{"mfr_sku":"FP287001","pattern_name":"Cerisy","color_name":"Neige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP287001-cerisy","list_image":"https://static.pierrefrey.com/uploads/product/packshots/493e9b07-0609-411e-9faf-bedabf87489b/6XvXYmvEZr4CFcMw7oET_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"120 cm / 47,24 inch","Repeat":"H: 20 cm - 7,00 inch | V: 65 cm - 25,59 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","Information":"Panel effect"},"width":"120 cm / 47,24 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 20 cm - 7,00 inch | V: 65 cm - 25,59 inch | Straight repeat","weight":"400 gr / m²","certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cerisy","description":"Wide width printed wallpapers - Embossed patterns, Cerisy. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/493e9b07-0609-411e-9faf-bedabf87489b/6XvXYmvEZr4CFcMw7oET.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/493e9b07-0609-411e-9faf-bedabf87489b/6XvXYmvEZr4CFcMw7oET.webp","https://static.pierrefrey.com/uploads/product/packshots/968d81fb-c8cc-47f4-b441-029b3c492f63/Lcj3dKenGLVbOL3lHMQ8.webp","https://static.pierrefrey.com/uploads/product/packshots/c8ad6d0c-a99d-49e0-9f8e-3dde41aa5512/ID59mDaHq0Phnw3TczLo.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/f05a76df-cf0b-4940-8548-cfebbb1fcb80/AOxMoj3d1UcTZUZyE8oT.webp","https://static.pierrefrey.com/uploads/product/packshots/895fb3e8-f91d-4fd5-94d7-423e853a704e/BgzIGZiij6RWcIKsJOys.webp","https://static.pierrefrey.com/uploads/product/packshots/efe3d825-3dca-4c56-9de0-f62c53664cb4/LNKqcZITb2zB8b2c8TVo.webp","https://static.pierrefrey.com/uploads/product/packshots/f71d16a1-57f1-4c24-9d29-f26dcbeb69fc/kw2E3B4alPdwPxNfItaV.webp","https://static.pierrefrey.com/uploads/product/packshots/da52b911-0177-4191-935a-ed804642b5e6/GJt8b74jNPWNZyp7uRCW.webp","https://static.pierrefrey.com/uploads/product/packshots/5d31fbb9-618b-43a3-b1af-1ee01f8b8b86/XqcC3LfKRKF3DnyA0x3q.webp","https://static.pierrefrey.com/uploads/product/packshots/4930e742-a6d1-4749-a7cb-8fbdfc5614dd/yEZWvjEZFNsrag25vMJB.webp","https://static.pierrefrey.com/uploads/product/packshots/7dfbd49c-fc1d-4b3f-91f5-16cafc6e821b/GR3PLaPc1HowAeRsxdWR.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/493e9b07-0609-411e-9faf-bedabf87489b/eArBP9WvjAMICWEUDVKe.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/493e9b07-0609-411e-9faf-bedabf87489b/6XvXYmvEZr4CFcMw7oET.webp,https://static.pierrefrey.com/uploads/product/packshots/968d81fb-c8cc-47f4-b441-029b3c492f63/Lcj3dKenGLVbOL3lHMQ8.webp,https://static.pierrefrey.com/uploads/product/packshots/c8ad6d0c-a99d-49e0-9f8e-3dde41aa5512/ID59mDaHq0Phnw3TczLo.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/f05a76df-cf0b-4940-8548-cfebbb1fcb80/AOxMoj3d1UcTZUZyE8oT.webp,https://static.pierrefrey.com/uploads/product/packshots/895fb3e8-f91d-4fd5-94d7-423e853a704e/BgzIGZiij6RWcIKsJOys.webp,https://static.pierrefrey.com/uploads/product/packshots/efe3d825-3dca-4c56-9de0-f62c53664cb4/LNKqcZITb2zB8b2c8TVo.webp,https://static.pierrefrey.com/uploads/product/packshots/f71d16a1-57f1-4c24-9d29-f26dcbeb69fc/kw2E3B4alPdwPxNfItaV.webp,https://static.pierrefrey.com/uploads/product/packshots/da52b911-0177-4191-935a-ed804642b5e6/GJt8b74jNPWNZyp7uRCW.webp,https://static.pierrefrey.com/uploads/product/packshots/5d31fbb9-618b-43a3-b1af-1ee01f8b8b86/XqcC3LfKRKF3DnyA0x3q.webp,https://static.pierrefrey.com/uploads/product/packshots/4930e742-a6d1-4749-a7cb-8fbdfc5614dd/yEZWvjEZFNsrag25vMJB.webp,https://static.pierrefrey.com/uploads/product/packshots/7dfbd49c-fc1d-4b3f-91f5-16cafc6e821b/GR3PLaPc1HowAeRsxdWR.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/493e9b07-0609-411e-9faf-bedabf87489b/eArBP9WvjAMICWEUDVKe.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/493e9b07-0609-411e-9faf-bedabf87489b/eArBP9WvjAMICWEUDVKe.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:12.309Z"}
+{"mfr_sku":"FP263001","pattern_name":"Youth","color_name":"Cafe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP263001-youth","list_image":"https://static.pierrefrey.com/uploads/product/packshots/504f9f32-064f-4283-9ec7-a2876a87c608/ry4IVfdhsCJ1NUvSfe79_251x335_webp.webp","specs":{"Type":"End-on-end threads - Printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 158 cm - 62,20 inch | Straight repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A"},"width":"87 cm / 34,25 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 158 cm - 62,20 inch | Straight repeat","weight":"240 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Youth","description":"End-on-end threads - Printed wallpapers, Youth. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/504f9f32-064f-4283-9ec7-a2876a87c608/ry4IVfdhsCJ1NUvSfe79.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/504f9f32-064f-4283-9ec7-a2876a87c608/ry4IVfdhsCJ1NUvSfe79.webp","https://static.pierrefrey.com/uploads/product/packshots/38233a56-9106-487d-894b-23f04ea5ed32/VI8qQ0DFv8sm7l4M0Nx0.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/4961a107-ded3-4dea-ba87-a6cb0ba1fd15/05QElRdUtmE4rwJ0QqKx.webp","https://static.pierrefrey.com/uploads/product/packshots/273188ba-93dd-42b1-ac88-315f35e79b0a/ItBKdwc4dEosW8fQm0A8.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/504f9f32-064f-4283-9ec7-a2876a87c608/oLS1bQuv7uFqsjP1LLu2.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/504f9f32-064f-4283-9ec7-a2876a87c608/ry4IVfdhsCJ1NUvSfe79.webp,https://static.pierrefrey.com/uploads/product/packshots/38233a56-9106-487d-894b-23f04ea5ed32/VI8qQ0DFv8sm7l4M0Nx0.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/4961a107-ded3-4dea-ba87-a6cb0ba1fd15/05QElRdUtmE4rwJ0QqKx.webp,https://static.pierrefrey.com/uploads/product/packshots/273188ba-93dd-42b1-ac88-315f35e79b0a/ItBKdwc4dEosW8fQm0A8.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/504f9f32-064f-4283-9ec7-a2876a87c608/oLS1bQuv7uFqsjP1LLu2.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/504f9f32-064f-4283-9ec7-a2876a87c608/oLS1bQuv7uFqsjP1LLu2.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:13.067Z"}
+{"mfr_sku":"FP281002","pattern_name":"Charmes","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP281002-charmes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/50a9fcb1-a48a-4f01-ba6c-1120e74d21d1/19l79hME9rYOh2IPuwb0_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 98 cm - 38,00 inch | V: 98 cm - 38,58 inch | Straight repeat","Weight":"435 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 98 cm - 38,00 inch | V: 98 cm - 38,58 inch | Straight repeat","weight":"435 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Charmes","description":"Vinyls - Printed wallpapers, Charmes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/50a9fcb1-a48a-4f01-ba6c-1120e74d21d1/19l79hME9rYOh2IPuwb0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/50a9fcb1-a48a-4f01-ba6c-1120e74d21d1/19l79hME9rYOh2IPuwb0.webp","https://static.pierrefrey.com/uploads/product/packshots/63cab3b2-2f54-44de-b968-e690ea4b7cc9/iQZP7WkQzeGY6WcMzX2k.webp","https://static.pierrefrey.com/uploads/product/packshots/bf5b2ec0-597a-42b0-a520-7b8cf47a8906/MD5eyJ1rXqcGJe2P4zlL.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/50a9fcb1-a48a-4f01-ba6c-1120e74d21d1/WvJCQpHBtfupQqfVofsJ.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/50a9fcb1-a48a-4f01-ba6c-1120e74d21d1/19l79hME9rYOh2IPuwb0.webp,https://static.pierrefrey.com/uploads/product/packshots/63cab3b2-2f54-44de-b968-e690ea4b7cc9/iQZP7WkQzeGY6WcMzX2k.webp,https://static.pierrefrey.com/uploads/product/packshots/bf5b2ec0-597a-42b0-a520-7b8cf47a8906/MD5eyJ1rXqcGJe2P4zlL.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/50a9fcb1-a48a-4f01-ba6c-1120e74d21d1/WvJCQpHBtfupQqfVofsJ.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/50a9fcb1-a48a-4f01-ba6c-1120e74d21d1/WvJCQpHBtfupQqfVofsJ.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:13.723Z"}
+{"mfr_sku":"FP262002","pattern_name":"Viva la vida","color_name":"Riviere","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP262002-viva-la-vida","list_image":"https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"84 cm / 33,07 inch","Repeat":"H: 84 cm - 33,00 inch | V: 65 cm - 25,59 inch | Straight repeat","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0","Notes":"Raised pattern"},"width":"84 cm / 33,07 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 84 cm - 33,00 inch | V: 65 cm - 25,59 inch | Straight repeat","weight":"205 gr / m²","certifications":"EUROCLASS C-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Viva la vida","description":"Small width printed wallpapers - Paperbacked fabrics, Viva la vida. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/524b8a7c-4ec7-4031-a497-e7948fcfb903/QgWm8YeQlkbCPr3hZ7F9.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/524b8a7c-4ec7-4031-a497-e7948fcfb903/QgWm8YeQlkbCPr3hZ7F9.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/524b8a7c-4ec7-4031-a497-e7948fcfb903/QgWm8YeQlkbCPr3hZ7F9.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:14.442Z"}
+{"mfr_sku":"FP267001","pattern_name":"Sous la verriere","color_name":"Argile","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP267001-sous-la-verriere","list_image":"https://static.pierrefrey.com/uploads/product/packshots/551a767d-0444-434f-b4f1-e2554d0f66bd/tEgD23OVH5guBpNO3Zz6_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 191 cm - 75,19 inch | Offset repeat 1/3","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 191 cm - 75,19 inch | Offset repeat 1/3","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sous la verriere","description":"Wide width printed wallpapers, Sous la verriere. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/551a767d-0444-434f-b4f1-e2554d0f66bd/tEgD23OVH5guBpNO3Zz6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/551a767d-0444-434f-b4f1-e2554d0f66bd/tEgD23OVH5guBpNO3Zz6.webp","https://static.pierrefrey.com/uploads/product/packshots/82d76743-b52b-40c1-b1ba-9e35c8efcbd4/dkDSVL3SeqWyExWEcCRt.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/551a767d-0444-434f-b4f1-e2554d0f66bd/on6fnKcEbGei4NHYUh8b.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/551a767d-0444-434f-b4f1-e2554d0f66bd/tEgD23OVH5guBpNO3Zz6.webp,https://static.pierrefrey.com/uploads/product/packshots/82d76743-b52b-40c1-b1ba-9e35c8efcbd4/dkDSVL3SeqWyExWEcCRt.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/551a767d-0444-434f-b4f1-e2554d0f66bd/on6fnKcEbGei4NHYUh8b.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/551a767d-0444-434f-b4f1-e2554d0f66bd/on6fnKcEbGei4NHYUh8b.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:15.373Z"}
+{"mfr_sku":"FP251001","pattern_name":"Sinularia","color_name":"Argile","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP251001-sinularia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5a830ed8-06a9-409c-832d-3cd07bf28cbb/vNiUdoW9zSU7ZGJ2N0dp_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"H: 69 cm - 27,00 inch | V: 46 cm - 18,11 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"69 cm / 27,16 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 69 cm - 27,00 inch | V: 46 cm - 18,11 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Sinularia","description":"Printed wallpapers, Sinularia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5a830ed8-06a9-409c-832d-3cd07bf28cbb/vNiUdoW9zSU7ZGJ2N0dp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5a830ed8-06a9-409c-832d-3cd07bf28cbb/vNiUdoW9zSU7ZGJ2N0dp.webp","https://static.pierrefrey.com/uploads/product/packshots/6bafd666-96e7-47a0-8768-3774242273ca/gBUaab21AxGPn0KyPdIx.webp","https://static.pierrefrey.com/uploads/product/packshots/efe51df2-4597-4c12-937c-40c46a0d842a/GSD60hQqEvSgYcBHBGuU.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/7570a421-dcbf-4856-848e-15526e79516d/4w13EQ8oMaeil15tYgqZ.webp","https://static.pierrefrey.com/uploads/product/packshots/d7e757bf-ad81-4489-9917-cda719a8aac1/wi4y9r6pPi02B4mmLen9.webp","https://static.pierrefrey.com/uploads/product/packshots/b5ba6cf1-53d8-4738-8450-3499f511b696/vD2DtNrKG8GFwR6I4djN.webp","https://static.pierrefrey.com/uploads/product/packshots/f26d27fe-0969-4b80-b967-7bb6252dedcd/ljDqfNyz6EkoG9ZeRkWd.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/5a830ed8-06a9-409c-832d-3cd07bf28cbb/DmgKRA0UqJtdERdqnuvJ.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5a830ed8-06a9-409c-832d-3cd07bf28cbb/vNiUdoW9zSU7ZGJ2N0dp.webp,https://static.pierrefrey.com/uploads/product/packshots/6bafd666-96e7-47a0-8768-3774242273ca/gBUaab21AxGPn0KyPdIx.webp,https://static.pierrefrey.com/uploads/product/packshots/efe51df2-4597-4c12-937c-40c46a0d842a/GSD60hQqEvSgYcBHBGuU.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/7570a421-dcbf-4856-848e-15526e79516d/4w13EQ8oMaeil15tYgqZ.webp,https://static.pierrefrey.com/uploads/product/packshots/d7e757bf-ad81-4489-9917-cda719a8aac1/wi4y9r6pPi02B4mmLen9.webp,https://static.pierrefrey.com/uploads/product/packshots/b5ba6cf1-53d8-4738-8450-3499f511b696/vD2DtNrKG8GFwR6I4djN.webp,https://static.pierrefrey.com/uploads/product/packshots/f26d27fe-0969-4b80-b967-7bb6252dedcd/ljDqfNyz6EkoG9ZeRkWd.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/5a830ed8-06a9-409c-832d-3cd07bf28cbb/DmgKRA0UqJtdERdqnuvJ.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/5a830ed8-06a9-409c-832d-3cd07bf28cbb/DmgKRA0UqJtdERdqnuvJ.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:16.214Z"}
+{"mfr_sku":"FP252001","pattern_name":"Noisette","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP252001-noisette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 64 cm - 25,00 inch | V: 46 cm - 18,11 inch | Free match","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 64 cm - 25,00 inch | V: 46 cm - 18,11 inch | Free match","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Noisette","description":"Printed wallpapers, Noisette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/NFdwDUOEpEv74LYFIVHB.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/NFdwDUOEpEv74LYFIVHB.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/NFdwDUOEpEv74LYFIVHB.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:17.081Z"}
+{"mfr_sku":"FP108001","pattern_name":"Parterre","color_name":"Jardin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP108001-parterre","list_image":"https://static.pierrefrey.com/uploads/product/packshots/605d1e39-6dfd-403d-9a4b-4b832b207261/IAcfLwXMS5xc1M7figTv_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"86 cm / 33,85 inch","Repeat":"H: 43 cm - 16,00 inch | V: 63 cm - 24,80 inch | Straight repeat","Weight":"245 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"86 cm / 33,85 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 43 cm - 16,00 inch | V: 63 cm - 24,80 inch | Straight repeat","weight":"245 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Parterre","description":"Straws and similar materials - Printed wallpapers, Parterre. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/605d1e39-6dfd-403d-9a4b-4b832b207261/IAcfLwXMS5xc1M7figTv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/605d1e39-6dfd-403d-9a4b-4b832b207261/IAcfLwXMS5xc1M7figTv.webp","https://static.pierrefrey.com/uploads/product/packshots/4e0d6b1a-16b7-4fd3-99b5-4a7801fd99d5/ZsG93UuodshgYWRf9GKh.webp","https://static.pierrefrey.com/uploads/product/packshots/ceac60a1-a80f-43d5-8111-b1c5fc9f00b7/YJLf9bZMf4pgJKaFtuGA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/605d1e39-6dfd-403d-9a4b-4b832b207261/biDDWLjCf5fBSOjLl3Ny.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/605d1e39-6dfd-403d-9a4b-4b832b207261/IAcfLwXMS5xc1M7figTv.webp,https://static.pierrefrey.com/uploads/product/packshots/4e0d6b1a-16b7-4fd3-99b5-4a7801fd99d5/ZsG93UuodshgYWRf9GKh.webp,https://static.pierrefrey.com/uploads/product/packshots/ceac60a1-a80f-43d5-8111-b1c5fc9f00b7/YJLf9bZMf4pgJKaFtuGA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/605d1e39-6dfd-403d-9a4b-4b832b207261/biDDWLjCf5fBSOjLl3Ny.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/605d1e39-6dfd-403d-9a4b-4b832b207261/biDDWLjCf5fBSOjLl3Ny.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:17.714Z"}
+{"mfr_sku":"FP257002","pattern_name":"Happiness","color_name":"Verger","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP257002-happiness","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 86 cm - 33,85 inch | Straight repeat","Weight":"465 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 86 cm - 33,85 inch | Straight repeat","weight":"465 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Happiness","description":"Small width printed wallpapers - Vinyls - Printed wallpapers, Happiness. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/518e972f-e27c-4cf3-ae23-7920cc2202b6/xu5g61ZIwkOZsKarNIus.webp","https://static.pierrefrey.com/uploads/product/packshots/061da937-32b9-4129-bab8-b492b476e3ed/7qbEWXJ3wwtNggpdzFen.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/NWgLiHRnmum5RG9uz9SI.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/518e972f-e27c-4cf3-ae23-7920cc2202b6/xu5g61ZIwkOZsKarNIus.webp,https://static.pierrefrey.com/uploads/product/packshots/061da937-32b9-4129-bab8-b492b476e3ed/7qbEWXJ3wwtNggpdzFen.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/NWgLiHRnmum5RG9uz9SI.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/NWgLiHRnmum5RG9uz9SI.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:18.495Z"}
+{"mfr_sku":"FP281001","pattern_name":"Charmes","color_name":"Galet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP281001-charmes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/63cab3b2-2f54-44de-b968-e690ea4b7cc9/iQZP7WkQzeGY6WcMzX2k_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 98 cm - 38,00 inch | V: 98 cm - 38,58 inch | Straight repeat","Weight":"435 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 98 cm - 38,00 inch | V: 98 cm - 38,58 inch | Straight repeat","weight":"435 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Charmes","description":"Vinyls - Printed wallpapers, Charmes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/63cab3b2-2f54-44de-b968-e690ea4b7cc9/iQZP7WkQzeGY6WcMzX2k.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/63cab3b2-2f54-44de-b968-e690ea4b7cc9/iQZP7WkQzeGY6WcMzX2k.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9fcb1-a48a-4f01-ba6c-1120e74d21d1/19l79hME9rYOh2IPuwb0.webp","https://static.pierrefrey.com/uploads/product/packshots/bf5b2ec0-597a-42b0-a520-7b8cf47a8906/MD5eyJ1rXqcGJe2P4zlL.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/63cab3b2-2f54-44de-b968-e690ea4b7cc9/CH7ZGOkQUDBKvyUfsCjl.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/63cab3b2-2f54-44de-b968-e690ea4b7cc9/iQZP7WkQzeGY6WcMzX2k.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9fcb1-a48a-4f01-ba6c-1120e74d21d1/19l79hME9rYOh2IPuwb0.webp,https://static.pierrefrey.com/uploads/product/packshots/bf5b2ec0-597a-42b0-a520-7b8cf47a8906/MD5eyJ1rXqcGJe2P4zlL.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/63cab3b2-2f54-44de-b968-e690ea4b7cc9/CH7ZGOkQUDBKvyUfsCjl.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/63cab3b2-2f54-44de-b968-e690ea4b7cc9/CH7ZGOkQUDBKvyUfsCjl.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:19.282Z"}
+{"mfr_sku":"FP293001","pattern_name":"Les fontainiers","color_name":"Fusain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP293001-les-fontainiers","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6456158e-a4d2-4585-9682-ea4ed46f96df/ZAkI70ySKcubhsNxJUYh_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 89 cm - 35,03 inch | Straight repeat","Weight":"130 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 89 cm - 35,03 inch | Straight repeat","weight":"130 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les fontainiers","description":"Wide width printed wallpapers, Les fontainiers. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6456158e-a4d2-4585-9682-ea4ed46f96df/ZAkI70ySKcubhsNxJUYh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6456158e-a4d2-4585-9682-ea4ed46f96df/ZAkI70ySKcubhsNxJUYh.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/718049a7-5989-4967-8883-6e75a3cff00d/oNhk1pWclaHHpvN4QpmQ.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/6456158e-a4d2-4585-9682-ea4ed46f96df/aXCdNVVBzoeXWm7mCDjT.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6456158e-a4d2-4585-9682-ea4ed46f96df/ZAkI70ySKcubhsNxJUYh.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/718049a7-5989-4967-8883-6e75a3cff00d/oNhk1pWclaHHpvN4QpmQ.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/6456158e-a4d2-4585-9682-ea4ed46f96df/aXCdNVVBzoeXWm7mCDjT.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/6456158e-a4d2-4585-9682-ea4ed46f96df/aXCdNVVBzoeXWm7mCDjT.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:20.037Z"}
+{"mfr_sku":"FP280001","pattern_name":"Le clos du roi","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP280001-le-clos-du-roi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/645dcfb8-1b61-499e-a8b2-8fa6985d419d/Ra5iqMgb4HSKPVmjiLWS_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 130 cm - 51,18 inch | Straight repeat","Weight":"415 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 130 cm - 51,18 inch | Straight repeat","weight":"415 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le clos du roi","description":"Small width printed wallpapers - Vinyls - Printed wallpapers, Le clos du roi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/645dcfb8-1b61-499e-a8b2-8fa6985d419d/Ra5iqMgb4HSKPVmjiLWS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/645dcfb8-1b61-499e-a8b2-8fa6985d419d/Ra5iqMgb4HSKPVmjiLWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/645dcfb8-1b61-499e-a8b2-8fa6985d419d/K6itAM4527wJ5eR9qyY8.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/645dcfb8-1b61-499e-a8b2-8fa6985d419d/Ra5iqMgb4HSKPVmjiLWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/645dcfb8-1b61-499e-a8b2-8fa6985d419d/K6itAM4527wJ5eR9qyY8.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/645dcfb8-1b61-499e-a8b2-8fa6985d419d/K6itAM4527wJ5eR9qyY8.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:20.847Z"}
+{"mfr_sku":"FP269003","pattern_name":"Tilly","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP269003-tilly","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6ba35144-b148-4296-a333-77851f7dc731/en1XoEofn8EcIMznXAsi_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch | V: 21 cm - 8,26 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 21 cm - 8,26 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tilly","description":"Printed wallpapers, Tilly. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6ba35144-b148-4296-a333-77851f7dc731/en1XoEofn8EcIMznXAsi.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6ba35144-b148-4296-a333-77851f7dc731/en1XoEofn8EcIMznXAsi.webp","https://static.pierrefrey.com/uploads/product/packshots/ca0bc95c-16ba-40c7-ae6c-a11289c78161/ZKQZIW6BFSM3ykNHzD4U.webp","https://static.pierrefrey.com/uploads/product/packshots/b14e1f89-c94e-4ff1-8b40-ba1cab9963e0/CIBfu2mhZX8YpGhz9Nba.webp","https://static.pierrefrey.com/uploads/product/packshots/28b3413b-cfe7-4cd5-95be-c53d8caaf469/JaviJz1SWTf0QT5MN2ff.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/f32f06b5-11cd-489c-ae01-ab250406060c/AP5oSOs6ZNRPGKukeKiA.webp","https://static.pierrefrey.com/uploads/product/packshots/bedd23f4-e340-411c-a142-d70ffa7f977d/qOEfUreYcYiNaPcE8bmV.webp","https://static.pierrefrey.com/uploads/product/packshots/59ff5eea-9682-42ce-8bf4-1503dec72acc/fcqc2YcQijgQHhqBj6y0.webp","https://static.pierrefrey.com/uploads/product/packshots/e00ca197-b68a-4181-8b1d-7051f4747dd5/9uobPhrAIeH2Ncx1qTJN.webp","https://static.pierrefrey.com/uploads/product/packshots/5590f4ad-3016-40ca-9100-379fe09ab2a3/8hECqwptm4RB8xxTUk8P.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/6ba35144-b148-4296-a333-77851f7dc731/a9yXM8s5RGxEhImwca6H.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6ba35144-b148-4296-a333-77851f7dc731/en1XoEofn8EcIMznXAsi.webp,https://static.pierrefrey.com/uploads/product/packshots/ca0bc95c-16ba-40c7-ae6c-a11289c78161/ZKQZIW6BFSM3ykNHzD4U.webp,https://static.pierrefrey.com/uploads/product/packshots/b14e1f89-c94e-4ff1-8b40-ba1cab9963e0/CIBfu2mhZX8YpGhz9Nba.webp,https://static.pierrefrey.com/uploads/product/packshots/28b3413b-cfe7-4cd5-95be-c53d8caaf469/JaviJz1SWTf0QT5MN2ff.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/f32f06b5-11cd-489c-ae01-ab250406060c/AP5oSOs6ZNRPGKukeKiA.webp,https://static.pierrefrey.com/uploads/product/packshots/bedd23f4-e340-411c-a142-d70ffa7f977d/qOEfUreYcYiNaPcE8bmV.webp,https://static.pierrefrey.com/uploads/product/packshots/59ff5eea-9682-42ce-8bf4-1503dec72acc/fcqc2YcQijgQHhqBj6y0.webp,https://static.pierrefrey.com/uploads/product/packshots/e00ca197-b68a-4181-8b1d-7051f4747dd5/9uobPhrAIeH2Ncx1qTJN.webp,https://static.pierrefrey.com/uploads/product/packshots/5590f4ad-3016-40ca-9100-379fe09ab2a3/8hECqwptm4RB8xxTUk8P.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/6ba35144-b148-4296-a333-77851f7dc731/a9yXM8s5RGxEhImwca6H.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/6ba35144-b148-4296-a333-77851f7dc731/a9yXM8s5RGxEhImwca6H.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:21.545Z"}
+{"mfr_sku":"FP251002","pattern_name":"Sinularia","color_name":"Eau","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP251002-sinularia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6bafd666-96e7-47a0-8768-3774242273ca/gBUaab21AxGPn0KyPdIx_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"H: 69 cm - 27,00 inch | V: 46 cm - 18,11 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"69 cm / 27,16 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 69 cm - 27,00 inch | V: 46 cm - 18,11 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Sinularia","description":"Printed wallpapers, Sinularia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6bafd666-96e7-47a0-8768-3774242273ca/gBUaab21AxGPn0KyPdIx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6bafd666-96e7-47a0-8768-3774242273ca/gBUaab21AxGPn0KyPdIx.webp","https://static.pierrefrey.com/uploads/product/packshots/5a830ed8-06a9-409c-832d-3cd07bf28cbb/vNiUdoW9zSU7ZGJ2N0dp.webp","https://static.pierrefrey.com/uploads/product/packshots/efe51df2-4597-4c12-937c-40c46a0d842a/GSD60hQqEvSgYcBHBGuU.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/7570a421-dcbf-4856-848e-15526e79516d/4w13EQ8oMaeil15tYgqZ.webp","https://static.pierrefrey.com/uploads/product/packshots/d7e757bf-ad81-4489-9917-cda719a8aac1/wi4y9r6pPi02B4mmLen9.webp","https://static.pierrefrey.com/uploads/product/packshots/b5ba6cf1-53d8-4738-8450-3499f511b696/vD2DtNrKG8GFwR6I4djN.webp","https://static.pierrefrey.com/uploads/product/packshots/f26d27fe-0969-4b80-b967-7bb6252dedcd/ljDqfNyz6EkoG9ZeRkWd.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/6bafd666-96e7-47a0-8768-3774242273ca/qtPCjbSLbiaYEw2fknyP.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6bafd666-96e7-47a0-8768-3774242273ca/gBUaab21AxGPn0KyPdIx.webp,https://static.pierrefrey.com/uploads/product/packshots/5a830ed8-06a9-409c-832d-3cd07bf28cbb/vNiUdoW9zSU7ZGJ2N0dp.webp,https://static.pierrefrey.com/uploads/product/packshots/efe51df2-4597-4c12-937c-40c46a0d842a/GSD60hQqEvSgYcBHBGuU.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/7570a421-dcbf-4856-848e-15526e79516d/4w13EQ8oMaeil15tYgqZ.webp,https://static.pierrefrey.com/uploads/product/packshots/d7e757bf-ad81-4489-9917-cda719a8aac1/wi4y9r6pPi02B4mmLen9.webp,https://static.pierrefrey.com/uploads/product/packshots/b5ba6cf1-53d8-4738-8450-3499f511b696/vD2DtNrKG8GFwR6I4djN.webp,https://static.pierrefrey.com/uploads/product/packshots/f26d27fe-0969-4b80-b967-7bb6252dedcd/ljDqfNyz6EkoG9ZeRkWd.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/6bafd666-96e7-47a0-8768-3774242273ca/qtPCjbSLbiaYEw2fknyP.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/6bafd666-96e7-47a0-8768-3774242273ca/qtPCjbSLbiaYEw2fknyP.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:22.308Z"}
+{"mfr_sku":"FP257001","pattern_name":"Happiness","color_name":"Dune","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP257001-happiness","list_image":"https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 86 cm - 33,85 inch | Straight repeat","Weight":"465 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 86 cm - 33,85 inch | Straight repeat","weight":"465 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Happiness","description":"Small width printed wallpapers - Vinyls - Printed wallpapers, Happiness. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/518e972f-e27c-4cf3-ae23-7920cc2202b6/xu5g61ZIwkOZsKarNIus.webp","https://static.pierrefrey.com/uploads/product/packshots/061da937-32b9-4129-bab8-b492b476e3ed/7qbEWXJ3wwtNggpdzFen.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/73d9daf3-ae95-4ea5-881e-3d2666363429/NGg0V1WR8qZqzokXoXeE.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/518e972f-e27c-4cf3-ae23-7920cc2202b6/xu5g61ZIwkOZsKarNIus.webp,https://static.pierrefrey.com/uploads/product/packshots/061da937-32b9-4129-bab8-b492b476e3ed/7qbEWXJ3wwtNggpdzFen.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/73d9daf3-ae95-4ea5-881e-3d2666363429/NGg0V1WR8qZqzokXoXeE.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/73d9daf3-ae95-4ea5-881e-3d2666363429/NGg0V1WR8qZqzokXoXeE.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:23.049Z"}
+{"mfr_sku":"FP264003","pattern_name":"Sceaux","color_name":"Nuit","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP264003-sceaux","list_image":"https://static.pierrefrey.com/uploads/product/packshots/753840b8-5f30-46ec-9c40-620b674f5e3b/YlWfiWk7cfBPmkyiJriN_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 128 cm - 50,39 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 128 cm - 50,39 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sceaux","description":"Wide width printed wallpapers, Sceaux. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/753840b8-5f30-46ec-9c40-620b674f5e3b/YlWfiWk7cfBPmkyiJriN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/753840b8-5f30-46ec-9c40-620b674f5e3b/YlWfiWk7cfBPmkyiJriN.webp","https://static.pierrefrey.com/uploads/product/packshots/30e39e9e-33ce-4bed-9104-522557a2cb7e/OjzQTU7H178EaLE6P2HT.webp","https://static.pierrefrey.com/uploads/product/packshots/8a51c505-c9e0-4c8c-95c5-6f23f03dfd87/qTGR2Nm5mR9XDNBpoNmM.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/1253054b-b0cf-41a2-9d4c-5d1451a59aac/isquJMjScbtwUwe83U6f.webp","https://static.pierrefrey.com/uploads/product/packshots/e49a0f16-6428-4236-a749-1813d52d0be0/BxRLvFza9PwYG9KG90i8.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/753840b8-5f30-46ec-9c40-620b674f5e3b/rNqusnITPZs90p5iLMhw.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/753840b8-5f30-46ec-9c40-620b674f5e3b/YlWfiWk7cfBPmkyiJriN.webp,https://static.pierrefrey.com/uploads/product/packshots/30e39e9e-33ce-4bed-9104-522557a2cb7e/OjzQTU7H178EaLE6P2HT.webp,https://static.pierrefrey.com/uploads/product/packshots/8a51c505-c9e0-4c8c-95c5-6f23f03dfd87/qTGR2Nm5mR9XDNBpoNmM.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/1253054b-b0cf-41a2-9d4c-5d1451a59aac/isquJMjScbtwUwe83U6f.webp,https://static.pierrefrey.com/uploads/product/packshots/e49a0f16-6428-4236-a749-1813d52d0be0/BxRLvFza9PwYG9KG90i8.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/753840b8-5f30-46ec-9c40-620b674f5e3b/rNqusnITPZs90p5iLMhw.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/753840b8-5f30-46ec-9c40-620b674f5e3b/rNqusnITPZs90p5iLMhw.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:23.829Z"}
+{"mfr_sku":"FP254003","pattern_name":"Cactus","color_name":"Graphite","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP254003-cactus","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7a9bcca7-4ee1-40e3-be0d-bf11ffff5fc3/SY4FtDfNqc8kBSGWeBW9_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Straws and similar materials","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","Width":"134 cm / 52,75 inch","Repeat":"H: 34 cm - 13,00 inch | V: 34 cm - 13,38 inch | Straight repeat","Weight":"340 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Information":"Panel effect"},"width":"134 cm / 52,75 inch","composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 34 cm - 13,38 inch | Straight repeat","weight":"340 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cactus","description":"Wide width printed wallpapers - Straws and similar materials, Cactus. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7a9bcca7-4ee1-40e3-be0d-bf11ffff5fc3/SY4FtDfNqc8kBSGWeBW9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7a9bcca7-4ee1-40e3-be0d-bf11ffff5fc3/SY4FtDfNqc8kBSGWeBW9.webp","https://static.pierrefrey.com/uploads/product/packshots/2e2ed94d-ebca-4991-b032-77c1a84ee4ca/b2qp3SSSogAFpjbkDrF2.webp","https://static.pierrefrey.com/uploads/product/packshots/97d2d497-827a-4bb2-82f2-078341222344/RA8hnGnqwnbdQNbjxDO2.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/7a9bcca7-4ee1-40e3-be0d-bf11ffff5fc3/snXshJN9Gx8DuGiq4cq3.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7a9bcca7-4ee1-40e3-be0d-bf11ffff5fc3/SY4FtDfNqc8kBSGWeBW9.webp,https://static.pierrefrey.com/uploads/product/packshots/2e2ed94d-ebca-4991-b032-77c1a84ee4ca/b2qp3SSSogAFpjbkDrF2.webp,https://static.pierrefrey.com/uploads/product/packshots/97d2d497-827a-4bb2-82f2-078341222344/RA8hnGnqwnbdQNbjxDO2.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/7a9bcca7-4ee1-40e3-be0d-bf11ffff5fc3/snXshJN9Gx8DuGiq4cq3.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/7a9bcca7-4ee1-40e3-be0d-bf11ffff5fc3/snXshJN9Gx8DuGiq4cq3.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:24.520Z"}
+{"mfr_sku":"FP273001","pattern_name":"Les jardins de versailles","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP273001-les-jardins-de-versailles","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7bea3250-5595-4e1e-93e9-f4a3e233f23e/IOW7T4WQRLO7zOsZV3dt_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 207 cm - 81,49 inch | Half drop repeat","Weight":"150 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 207 cm - 81,49 inch | Half drop repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les jardins de versailles","description":"Wide width printed wallpapers, Les jardins de versailles. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7bea3250-5595-4e1e-93e9-f4a3e233f23e/IOW7T4WQRLO7zOsZV3dt.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7bea3250-5595-4e1e-93e9-f4a3e233f23e/IOW7T4WQRLO7zOsZV3dt.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/a5b35a3a-f457-4fd0-92e5-3c34590b61f6/8ZjyJyqZNMqrRisAJbPM.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/7bea3250-5595-4e1e-93e9-f4a3e233f23e/KOq6uFPxuiBRxQ8UClHf.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7bea3250-5595-4e1e-93e9-f4a3e233f23e/IOW7T4WQRLO7zOsZV3dt.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/a5b35a3a-f457-4fd0-92e5-3c34590b61f6/8ZjyJyqZNMqrRisAJbPM.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/7bea3250-5595-4e1e-93e9-f4a3e233f23e/KOq6uFPxuiBRxQ8UClHf.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/7bea3250-5595-4e1e-93e9-f4a3e233f23e/KOq6uFPxuiBRxQ8UClHf.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:25.333Z"}
+{"mfr_sku":"FP267002","pattern_name":"Sous la verriere","color_name":"Fusain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP267002-sous-la-verriere","list_image":"https://static.pierrefrey.com/uploads/product/packshots/82d76743-b52b-40c1-b1ba-9e35c8efcbd4/dkDSVL3SeqWyExWEcCRt_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 191 cm - 75,19 inch | Offset repeat 1/3","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 191 cm - 75,19 inch | Offset repeat 1/3","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sous la verriere","description":"Wide width printed wallpapers, Sous la verriere. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/82d76743-b52b-40c1-b1ba-9e35c8efcbd4/dkDSVL3SeqWyExWEcCRt.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/82d76743-b52b-40c1-b1ba-9e35c8efcbd4/dkDSVL3SeqWyExWEcCRt.webp","https://static.pierrefrey.com/uploads/product/packshots/551a767d-0444-434f-b4f1-e2554d0f66bd/tEgD23OVH5guBpNO3Zz6.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/82d76743-b52b-40c1-b1ba-9e35c8efcbd4/Iy1AIbhlNZxgr4s75HIe.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/82d76743-b52b-40c1-b1ba-9e35c8efcbd4/dkDSVL3SeqWyExWEcCRt.webp,https://static.pierrefrey.com/uploads/product/packshots/551a767d-0444-434f-b4f1-e2554d0f66bd/tEgD23OVH5guBpNO3Zz6.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/82d76743-b52b-40c1-b1ba-9e35c8efcbd4/Iy1AIbhlNZxgr4s75HIe.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/82d76743-b52b-40c1-b1ba-9e35c8efcbd4/Iy1AIbhlNZxgr4s75HIe.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:26.096Z"}
+{"mfr_sku":"FP272003","pattern_name":"L'allee du roi","color_name":"Epinard","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP272003-lallee-du-roi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/83556aa6-f0da-435d-8aff-b9279b003b77/ZcT7rb9BrQApsvzskZ9M_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 36 cm - 14,17 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 36 cm - 14,17 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"L'allee du roi","description":"Printed wallpapers, L'allee du roi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/83556aa6-f0da-435d-8aff-b9279b003b77/ZcT7rb9BrQApsvzskZ9M.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/83556aa6-f0da-435d-8aff-b9279b003b77/ZcT7rb9BrQApsvzskZ9M.webp","https://static.pierrefrey.com/uploads/product/packshots/beec07f4-cc33-471e-b587-f2520bafce87/E4ZwsPtrcv59tvvwb2wq.webp","https://static.pierrefrey.com/uploads/product/packshots/1328fe28-2456-453e-a779-a3c8a75cb067/BriEivTLeSUUwASIFgwO.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/e5834c10-a729-478b-a6e0-42b2895aaaa3/xEcpjJvf8OcCYPtuV5hN.webp","https://static.pierrefrey.com/uploads/product/packshots/0499d6bd-87fc-4ff5-a481-ff314419759f/vXzJnK4k0Lc42kq2AWoL.webp","https://static.pierrefrey.com/uploads/product/packshots/3152081e-650a-49d7-a0dd-9940ac45802b/55CCwc1PY9nTJ8OaBOIx.webp","https://static.pierrefrey.com/uploads/product/packshots/546b00b2-13a4-4214-b042-5413fdd1a1a8/eKSwEihlnegVpG20Kyqd.webp","https://static.pierrefrey.com/uploads/product/packshots/da92a454-ea8e-40ce-b318-d66f811150b2/B1IgQrszdWTNur41zmD6.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/83556aa6-f0da-435d-8aff-b9279b003b77/yZoLkZ2vrLgHa3I6YKKx.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/83556aa6-f0da-435d-8aff-b9279b003b77/ZcT7rb9BrQApsvzskZ9M.webp,https://static.pierrefrey.com/uploads/product/packshots/beec07f4-cc33-471e-b587-f2520bafce87/E4ZwsPtrcv59tvvwb2wq.webp,https://static.pierrefrey.com/uploads/product/packshots/1328fe28-2456-453e-a779-a3c8a75cb067/BriEivTLeSUUwASIFgwO.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/e5834c10-a729-478b-a6e0-42b2895aaaa3/xEcpjJvf8OcCYPtuV5hN.webp,https://static.pierrefrey.com/uploads/product/packshots/0499d6bd-87fc-4ff5-a481-ff314419759f/vXzJnK4k0Lc42kq2AWoL.webp,https://static.pierrefrey.com/uploads/product/packshots/3152081e-650a-49d7-a0dd-9940ac45802b/55CCwc1PY9nTJ8OaBOIx.webp,https://static.pierrefrey.com/uploads/product/packshots/546b00b2-13a4-4214-b042-5413fdd1a1a8/eKSwEihlnegVpG20Kyqd.webp,https://static.pierrefrey.com/uploads/product/packshots/da92a454-ea8e-40ce-b318-d66f811150b2/B1IgQrszdWTNur41zmD6.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/83556aa6-f0da-435d-8aff-b9279b003b77/yZoLkZ2vrLgHa3I6YKKx.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/83556aa6-f0da-435d-8aff-b9279b003b77/yZoLkZ2vrLgHa3I6YKKx.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:26.953Z"}
+{"mfr_sku":"FP259001","pattern_name":"Macao","color_name":"Fp259001","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP259001-macao","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8631ea04-fc23-4c32-a789-7b372e8229e3/5848mk6NjAj5us5RnkxS_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 83 cm - 32,67 inch | Straight repeat","Weight":"475 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 83 cm - 32,67 inch | Straight repeat","weight":"475 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Macao","description":"Small width printed wallpapers - Vinyls, Macao. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8631ea04-fc23-4c32-a789-7b372e8229e3/5848mk6NjAj5us5RnkxS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8631ea04-fc23-4c32-a789-7b372e8229e3/5848mk6NjAj5us5RnkxS.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/6c192028-d827-4b1e-9585-60946017a38f/ag9BQ7pvjyUTLuBfbf2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/d6295cc3-5bed-47c1-b738-246aa99fe453/jYyfamBspDvt9vlT3nXf.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4d9685-7652-4349-bc93-dc978ae19f69/7yAaD47iveHB8UECoKur.webp","https://static.pierrefrey.com/uploads/product/packshots/5c12d727-9700-48f3-8e8e-4b0475e23f7f/FRi4Gqgl89rcwngp7KWZ.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/8631ea04-fc23-4c32-a789-7b372e8229e3/CL8ZBLBrk8VyGwAcTgeI.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8631ea04-fc23-4c32-a789-7b372e8229e3/5848mk6NjAj5us5RnkxS.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/6c192028-d827-4b1e-9585-60946017a38f/ag9BQ7pvjyUTLuBfbf2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/d6295cc3-5bed-47c1-b738-246aa99fe453/jYyfamBspDvt9vlT3nXf.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4d9685-7652-4349-bc93-dc978ae19f69/7yAaD47iveHB8UECoKur.webp,https://static.pierrefrey.com/uploads/product/packshots/5c12d727-9700-48f3-8e8e-4b0475e23f7f/FRi4Gqgl89rcwngp7KWZ.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/8631ea04-fc23-4c32-a789-7b372e8229e3/CL8ZBLBrk8VyGwAcTgeI.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/8631ea04-fc23-4c32-a789-7b372e8229e3/CL8ZBLBrk8VyGwAcTgeI.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:27.702Z"}
+{"mfr_sku":"FP264002","pattern_name":"Sceaux","color_name":"Lac","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP264002-sceaux","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8a51c505-c9e0-4c8c-95c5-6f23f03dfd87/qTGR2Nm5mR9XDNBpoNmM_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 128 cm - 50,39 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 128 cm - 50,39 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sceaux","description":"Wide width printed wallpapers, Sceaux. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8a51c505-c9e0-4c8c-95c5-6f23f03dfd87/qTGR2Nm5mR9XDNBpoNmM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8a51c505-c9e0-4c8c-95c5-6f23f03dfd87/qTGR2Nm5mR9XDNBpoNmM.webp","https://static.pierrefrey.com/uploads/product/packshots/30e39e9e-33ce-4bed-9104-522557a2cb7e/OjzQTU7H178EaLE6P2HT.webp","https://static.pierrefrey.com/uploads/product/packshots/753840b8-5f30-46ec-9c40-620b674f5e3b/YlWfiWk7cfBPmkyiJriN.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/1253054b-b0cf-41a2-9d4c-5d1451a59aac/isquJMjScbtwUwe83U6f.webp","https://static.pierrefrey.com/uploads/product/packshots/e49a0f16-6428-4236-a749-1813d52d0be0/BxRLvFza9PwYG9KG90i8.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/8a51c505-c9e0-4c8c-95c5-6f23f03dfd87/6nTSrTwqIhVJMHfli8BC.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8a51c505-c9e0-4c8c-95c5-6f23f03dfd87/qTGR2Nm5mR9XDNBpoNmM.webp,https://static.pierrefrey.com/uploads/product/packshots/30e39e9e-33ce-4bed-9104-522557a2cb7e/OjzQTU7H178EaLE6P2HT.webp,https://static.pierrefrey.com/uploads/product/packshots/753840b8-5f30-46ec-9c40-620b674f5e3b/YlWfiWk7cfBPmkyiJriN.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/1253054b-b0cf-41a2-9d4c-5d1451a59aac/isquJMjScbtwUwe83U6f.webp,https://static.pierrefrey.com/uploads/product/packshots/e49a0f16-6428-4236-a749-1813d52d0be0/BxRLvFza9PwYG9KG90i8.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/8a51c505-c9e0-4c8c-95c5-6f23f03dfd87/6nTSrTwqIhVJMHfli8BC.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/8a51c505-c9e0-4c8c-95c5-6f23f03dfd87/6nTSrTwqIhVJMHfli8BC.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:28.531Z"}
+{"mfr_sku":"FP285001","pattern_name":"Le verger enchante","color_name":"Matin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP285001-le-verger-enchante","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8c2eddd7-ff9f-41fa-ae41-eabad4b3a314/jRmAgXYvWe3UgTT6v0js_251x335_webp.webp","specs":{"Type":"Embossed patterns - Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"NON WOVEN","Composition":"48 % Straw - 33 % Viscose - 19 % Polyester","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 120 cm - 47,24 inch | Free match","Weight":"580 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting"},"width":"86 cm / 33,85 inch","composition":"48 % Straw - 33 % Viscose - 19 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 86 cm - 33,00 inch | V: 120 cm - 47,24 inch | Free match","weight":"580 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Le verger enchante","description":"Embossed patterns - Straws and similar materials - Embroideries, Le verger enchante. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8c2eddd7-ff9f-41fa-ae41-eabad4b3a314/jRmAgXYvWe3UgTT6v0js.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8c2eddd7-ff9f-41fa-ae41-eabad4b3a314/jRmAgXYvWe3UgTT6v0js.webp","https://static.pierrefrey.com/uploads/product/packshots/3051a548-33e4-4bfb-ba54-98a1dca80189/wkVGKAqXermxEqsKV7WG.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/8c2eddd7-ff9f-41fa-ae41-eabad4b3a314/Hf72hd0ytDqNPZwosUVA.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8c2eddd7-ff9f-41fa-ae41-eabad4b3a314/jRmAgXYvWe3UgTT6v0js.webp,https://static.pierrefrey.com/uploads/product/packshots/3051a548-33e4-4bfb-ba54-98a1dca80189/wkVGKAqXermxEqsKV7WG.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/8c2eddd7-ff9f-41fa-ae41-eabad4b3a314/Hf72hd0ytDqNPZwosUVA.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/8c2eddd7-ff9f-41fa-ae41-eabad4b3a314/Hf72hd0ytDqNPZwosUVA.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:29.237Z"}
+{"mfr_sku":"FP250001","pattern_name":"Cancun","color_name":"Terre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP250001-cancune","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"85 cm / 33,46 inch","Repeat":"H: 43 cm - 16,00 inch | V: 36 cm - 14,17 inch | Free match","Weight":"260 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A"},"width":"85 cm / 33,46 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 43 cm - 16,00 inch | V: 36 cm - 14,17 inch | Free match","weight":"260 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cancun","description":"Small width printed wallpapers - Paperbacked fabrics, Cancun. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/8dda40f4-4528-4d65-8d63-393b052375c3/hIFGxJkNnKucJjceLvbW.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/8dda40f4-4528-4d65-8d63-393b052375c3/hIFGxJkNnKucJjceLvbW.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/8dda40f4-4528-4d65-8d63-393b052375c3/hIFGxJkNnKucJjceLvbW.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:29.830Z"}
+{"mfr_sku":"FP209001","pattern_name":"Izamal","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP209001-izamal","list_image":"https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 45 cm - 17,00 inch | V: 47 cm - 18,50 inch | Straight repeat","Weight":"190 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 45 cm - 17,00 inch | V: 47 cm - 18,50 inch | Straight repeat","weight":"190 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Izamal","description":"Wide width printed wallpapers, Izamal. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/93dc5f59-8871-40f1-8b1b-9c52893cffc7/IjDT99pfK3gkdP1Hs6Ic.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/93dc5f59-8871-40f1-8b1b-9c52893cffc7/IjDT99pfK3gkdP1Hs6Ic.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/93dc5f59-8871-40f1-8b1b-9c52893cffc7/IjDT99pfK3gkdP1Hs6Ic.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:30.615Z"}
+{"mfr_sku":"FP287002","pattern_name":"Cerisy","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP287002-cerisy","list_image":"https://static.pierrefrey.com/uploads/product/packshots/968d81fb-c8cc-47f4-b441-029b3c492f63/Lcj3dKenGLVbOL3lHMQ8_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"120 cm / 47,24 inch","Repeat":"H: 20 cm - 7,00 inch | V: 65 cm - 25,59 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","Information":"Panel effect"},"width":"120 cm / 47,24 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 20 cm - 7,00 inch | V: 65 cm - 25,59 inch | Straight repeat","weight":"400 gr / m²","certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cerisy","description":"Wide width printed wallpapers - Embossed patterns, Cerisy. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/968d81fb-c8cc-47f4-b441-029b3c492f63/Lcj3dKenGLVbOL3lHMQ8.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/968d81fb-c8cc-47f4-b441-029b3c492f63/Lcj3dKenGLVbOL3lHMQ8.webp","https://static.pierrefrey.com/uploads/product/packshots/493e9b07-0609-411e-9faf-bedabf87489b/6XvXYmvEZr4CFcMw7oET.webp","https://static.pierrefrey.com/uploads/product/packshots/c8ad6d0c-a99d-49e0-9f8e-3dde41aa5512/ID59mDaHq0Phnw3TczLo.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/f05a76df-cf0b-4940-8548-cfebbb1fcb80/AOxMoj3d1UcTZUZyE8oT.webp","https://static.pierrefrey.com/uploads/product/packshots/895fb3e8-f91d-4fd5-94d7-423e853a704e/BgzIGZiij6RWcIKsJOys.webp","https://static.pierrefrey.com/uploads/product/packshots/efe3d825-3dca-4c56-9de0-f62c53664cb4/LNKqcZITb2zB8b2c8TVo.webp","https://static.pierrefrey.com/uploads/product/packshots/f71d16a1-57f1-4c24-9d29-f26dcbeb69fc/kw2E3B4alPdwPxNfItaV.webp","https://static.pierrefrey.com/uploads/product/packshots/da52b911-0177-4191-935a-ed804642b5e6/GJt8b74jNPWNZyp7uRCW.webp","https://static.pierrefrey.com/uploads/product/packshots/5d31fbb9-618b-43a3-b1af-1ee01f8b8b86/XqcC3LfKRKF3DnyA0x3q.webp","https://static.pierrefrey.com/uploads/product/packshots/4930e742-a6d1-4749-a7cb-8fbdfc5614dd/yEZWvjEZFNsrag25vMJB.webp","https://static.pierrefrey.com/uploads/product/packshots/7dfbd49c-fc1d-4b3f-91f5-16cafc6e821b/GR3PLaPc1HowAeRsxdWR.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/968d81fb-c8cc-47f4-b441-029b3c492f63/mhR7XsFciGZfWT9hRjgl.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/968d81fb-c8cc-47f4-b441-029b3c492f63/Lcj3dKenGLVbOL3lHMQ8.webp,https://static.pierrefrey.com/uploads/product/packshots/493e9b07-0609-411e-9faf-bedabf87489b/6XvXYmvEZr4CFcMw7oET.webp,https://static.pierrefrey.com/uploads/product/packshots/c8ad6d0c-a99d-49e0-9f8e-3dde41aa5512/ID59mDaHq0Phnw3TczLo.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/f05a76df-cf0b-4940-8548-cfebbb1fcb80/AOxMoj3d1UcTZUZyE8oT.webp,https://static.pierrefrey.com/uploads/product/packshots/895fb3e8-f91d-4fd5-94d7-423e853a704e/BgzIGZiij6RWcIKsJOys.webp,https://static.pierrefrey.com/uploads/product/packshots/efe3d825-3dca-4c56-9de0-f62c53664cb4/LNKqcZITb2zB8b2c8TVo.webp,https://static.pierrefrey.com/uploads/product/packshots/f71d16a1-57f1-4c24-9d29-f26dcbeb69fc/kw2E3B4alPdwPxNfItaV.webp,https://static.pierrefrey.com/uploads/product/packshots/da52b911-0177-4191-935a-ed804642b5e6/GJt8b74jNPWNZyp7uRCW.webp,https://static.pierrefrey.com/uploads/product/packshots/5d31fbb9-618b-43a3-b1af-1ee01f8b8b86/XqcC3LfKRKF3DnyA0x3q.webp,https://static.pierrefrey.com/uploads/product/packshots/4930e742-a6d1-4749-a7cb-8fbdfc5614dd/yEZWvjEZFNsrag25vMJB.webp,https://static.pierrefrey.com/uploads/product/packshots/7dfbd49c-fc1d-4b3f-91f5-16cafc6e821b/GR3PLaPc1HowAeRsxdWR.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/968d81fb-c8cc-47f4-b441-029b3c492f63/mhR7XsFciGZfWT9hRjgl.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/968d81fb-c8cc-47f4-b441-029b3c492f63/mhR7XsFciGZfWT9hRjgl.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:31.357Z"}
+{"mfr_sku":"FP262001","pattern_name":"Viva la vida","color_name":"Cafe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP262001-viva-la-vida","list_image":"https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"84 cm / 33,07 inch","Repeat":"H: 84 cm - 33,00 inch | V: 65 cm - 25,59 inch | Straight repeat","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0","Notes":"Raised pattern"},"width":"84 cm / 33,07 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 84 cm - 33,00 inch | V: 65 cm - 25,59 inch | Straight repeat","weight":"205 gr / m²","certifications":"EUROCLASS C-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Viva la vida","description":"Small width printed wallpapers - Paperbacked fabrics, Viva la vida. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/96e5f179-f281-44b0-bb8d-75a0284fedaa/gwpsQ4Jj5k3rGV0pvHqw.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/96e5f179-f281-44b0-bb8d-75a0284fedaa/gwpsQ4Jj5k3rGV0pvHqw.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/96e5f179-f281-44b0-bb8d-75a0284fedaa/gwpsQ4Jj5k3rGV0pvHqw.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:32.034Z"}
+{"mfr_sku":"FP254002","pattern_name":"Cactus","color_name":"Or","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP254002-cactus","list_image":"https://static.pierrefrey.com/uploads/product/packshots/97d2d497-827a-4bb2-82f2-078341222344/RA8hnGnqwnbdQNbjxDO2_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Straws and similar materials","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","Width":"134 cm / 52,75 inch","Repeat":"H: 34 cm - 13,00 inch | V: 34 cm - 13,38 inch | Straight repeat","Weight":"340 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Information":"Panel effect"},"width":"134 cm / 52,75 inch","composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 34 cm - 13,38 inch | Straight repeat","weight":"340 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cactus","description":"Wide width printed wallpapers - Straws and similar materials, Cactus. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/97d2d497-827a-4bb2-82f2-078341222344/RA8hnGnqwnbdQNbjxDO2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/97d2d497-827a-4bb2-82f2-078341222344/RA8hnGnqwnbdQNbjxDO2.webp","https://static.pierrefrey.com/uploads/product/packshots/2e2ed94d-ebca-4991-b032-77c1a84ee4ca/b2qp3SSSogAFpjbkDrF2.webp","https://static.pierrefrey.com/uploads/product/packshots/7a9bcca7-4ee1-40e3-be0d-bf11ffff5fc3/SY4FtDfNqc8kBSGWeBW9.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/97d2d497-827a-4bb2-82f2-078341222344/KDcocy34f1gEXk5sLBzU.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/97d2d497-827a-4bb2-82f2-078341222344/RA8hnGnqwnbdQNbjxDO2.webp,https://static.pierrefrey.com/uploads/product/packshots/2e2ed94d-ebca-4991-b032-77c1a84ee4ca/b2qp3SSSogAFpjbkDrF2.webp,https://static.pierrefrey.com/uploads/product/packshots/7a9bcca7-4ee1-40e3-be0d-bf11ffff5fc3/SY4FtDfNqc8kBSGWeBW9.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/97d2d497-827a-4bb2-82f2-078341222344/KDcocy34f1gEXk5sLBzU.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/97d2d497-827a-4bb2-82f2-078341222344/KDcocy34f1gEXk5sLBzU.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:32.905Z"}
+{"mfr_sku":"FP278001","pattern_name":"Fantaisie tropicale","color_name":"Vegetal","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP278001-fantaisie-tropicale","list_image":"https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 137 cm - 53,93 inch | Half drop repeat","Weight":"150 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 137 cm - 53,93 inch | Half drop repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fantaisie tropicale","description":"Wide width printed wallpapers, Fantaisie tropicale. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/bdd60930-7687-401c-884c-7c44bb809dda/8mLcygUnMmEYK2WcFijT.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/988b21f6-2887-4268-85d7-6595c889f15e/7Ob0UAWXDmdxRynNX4Py.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/bdd60930-7687-401c-884c-7c44bb809dda/8mLcygUnMmEYK2WcFijT.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/988b21f6-2887-4268-85d7-6595c889f15e/7Ob0UAWXDmdxRynNX4Py.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/988b21f6-2887-4268-85d7-6595c889f15e/7Ob0UAWXDmdxRynNX4Py.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:33.670Z"}
+{"mfr_sku":"FP261002","pattern_name":"Casa","color_name":"Graphite","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP261002-casa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9989b2ee-3b15-4e88-a2f0-e958cf729174/sbALfznlhI5JfficPKXF_251x335_webp.webp","specs":{"Type":"Embossed patterns - Straws and similar materials - Embroideries","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per roll of  7,20 mts","Backing":"NON WOVEN","Composition":"57 % Straw - 21 % Viscose - 17 % Polyester - 5 % metallised yarn Lurex","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 40 cm - 15,74 inch | Free match","Weight":"455 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting"},"width":"86 cm / 33,85 inch","composition":"57 % Straw - 21 % Viscose - 17 % Polyester - 5 % metallised yarn Lurex","material":"NON WOVEN","pattern_repeat":"H: 86 cm - 33,00 inch | V: 40 cm - 15,74 inch | Free match","weight":"455 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Casa","description":"Embossed patterns - Straws and similar materials - Embroideries, Casa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9989b2ee-3b15-4e88-a2f0-e958cf729174/sbALfznlhI5JfficPKXF.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9989b2ee-3b15-4e88-a2f0-e958cf729174/sbALfznlhI5JfficPKXF.webp","https://static.pierrefrey.com/uploads/product/packshots/0c94984c-2b81-40e9-9d48-f1e00472fae6/hpTxEH19UizYkitLldVx.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/11bada4d-3584-4c49-8b0d-5bca18b24f4b/fHEFWDtauUO7kisbbRRK.webp","https://static.pierrefrey.com/uploads/product/packshots/42f8ed96-dc5e-469c-85ee-88f401d160f0/6GoFDX2y94HIisYOaZX7.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/9989b2ee-3b15-4e88-a2f0-e958cf729174/TlHW7Cnf8Spf2nQ2Auwv.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9989b2ee-3b15-4e88-a2f0-e958cf729174/sbALfznlhI5JfficPKXF.webp,https://static.pierrefrey.com/uploads/product/packshots/0c94984c-2b81-40e9-9d48-f1e00472fae6/hpTxEH19UizYkitLldVx.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/11bada4d-3584-4c49-8b0d-5bca18b24f4b/fHEFWDtauUO7kisbbRRK.webp,https://static.pierrefrey.com/uploads/product/packshots/42f8ed96-dc5e-469c-85ee-88f401d160f0/6GoFDX2y94HIisYOaZX7.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/9989b2ee-3b15-4e88-a2f0-e958cf729174/TlHW7Cnf8Spf2nQ2Auwv.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/9989b2ee-3b15-4e88-a2f0-e958cf729174/TlHW7Cnf8Spf2nQ2Auwv.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:34.371Z"}
+{"mfr_sku":"FP252003","pattern_name":"Noisette","color_name":"Soleil","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP252003-noisette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 64 cm - 25,00 inch | V: 46 cm - 18,11 inch | Free match","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 64 cm - 25,00 inch | V: 46 cm - 18,11 inch | Free match","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Noisette","description":"Printed wallpapers, Noisette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/9a64f689-da0d-4d75-a442-3a391814965a/EWuTS3jYiu0yyjPVktCc.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/9a64f689-da0d-4d75-a442-3a391814965a/EWuTS3jYiu0yyjPVktCc.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/9a64f689-da0d-4d75-a442-3a391814965a/EWuTS3jYiu0yyjPVktCc.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:35.081Z"}
+{"mfr_sku":"FP286001","pattern_name":"Alhambra","color_name":"Dune","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP286001-alhambra","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns - Paperbacked fabrics - Embroideries","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"43 % Silk - 39 % Acrylic - 18 % Polyester","Width":"128 cm / 50,39 inch","Repeat":"H: 66 cm - 25,00 inch | V: 40 cm - 15,74 inch | Free match","Weight":"540 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Information":"Embroidered wallcovering.Irregular appearance due to handcrafting"},"width":"128 cm / 50,39 inch","composition":"43 % Silk - 39 % Acrylic - 18 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 66 cm - 25,00 inch | V: 40 cm - 15,74 inch | Free match","weight":"540 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Alhambra","description":"Wide width printed wallpapers - Embossed patterns - Paperbacked fabrics - Embroideries, Alhambra. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/4e0d6b1a-16b7-4fd3-99b5-4a7801fd99d5/ZsG93UuodshgYWRf9GKh.webp","https://static.pierrefrey.com/uploads/product/packshots/93d864a0-cef6-472b-9c9a-c31f63c24fda/GDP9BVDuVplCOssl9tft.webp","https://static.pierrefrey.com/uploads/product/packshots/ceac60a1-a80f-43d5-8111-b1c5fc9f00b7/YJLf9bZMf4pgJKaFtuGA.webp","https://static.pierrefrey.com/uploads/product/packshots/4ca3596b-7f16-429b-b687-0db31f90c6b7/mQD0dCYjb5uhcCK7eay4.webp","https://static.pierrefrey.com/uploads/product/packshots/66fbe2ac-920a-43eb-8d50-00bb73985208/j7TFDGC3y6l4LTgdg7re.webp","https://static.pierrefrey.com/uploads/product/packshots/73b1497d-9624-4cda-af2d-3b371b63e365/ibx251Sa11CXUSTkaWki.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/9fb5425c-b014-4235-bb89-797821ecd516/cYGViTDOS0vUkQiXkgyq.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/4e0d6b1a-16b7-4fd3-99b5-4a7801fd99d5/ZsG93UuodshgYWRf9GKh.webp,https://static.pierrefrey.com/uploads/product/packshots/93d864a0-cef6-472b-9c9a-c31f63c24fda/GDP9BVDuVplCOssl9tft.webp,https://static.pierrefrey.com/uploads/product/packshots/ceac60a1-a80f-43d5-8111-b1c5fc9f00b7/YJLf9bZMf4pgJKaFtuGA.webp,https://static.pierrefrey.com/uploads/product/packshots/4ca3596b-7f16-429b-b687-0db31f90c6b7/mQD0dCYjb5uhcCK7eay4.webp,https://static.pierrefrey.com/uploads/product/packshots/66fbe2ac-920a-43eb-8d50-00bb73985208/j7TFDGC3y6l4LTgdg7re.webp,https://static.pierrefrey.com/uploads/product/packshots/73b1497d-9624-4cda-af2d-3b371b63e365/ibx251Sa11CXUSTkaWki.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/9fb5425c-b014-4235-bb89-797821ecd516/cYGViTDOS0vUkQiXkgyq.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/9fb5425c-b014-4235-bb89-797821ecd516/cYGViTDOS0vUkQiXkgyq.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:35.826Z"}
+{"mfr_sku":"FP279002","pattern_name":"Courtine","color_name":"Fin D'Ete","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP279002-courtine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a27abd46-fb96-4915-8f89-55a1390839e7/G8HAp8wwr6YwnsjDnX7f_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Half drop repeat","Weight":"415 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Half drop repeat","weight":"415 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Courtine","description":"Small width printed wallpapers - Vinyls - Printed wallpapers, Courtine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a27abd46-fb96-4915-8f89-55a1390839e7/G8HAp8wwr6YwnsjDnX7f.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a27abd46-fb96-4915-8f89-55a1390839e7/G8HAp8wwr6YwnsjDnX7f.webp","https://static.pierrefrey.com/uploads/product/packshots/202426a7-e2d4-4d39-83ab-09d949ed18db/yynbaB8p8jbmrHdBu30X.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/f58948ff-ee1f-433c-93d4-d6d3c2070dac/VIydmRPxXE4zZGc1cDjD.webp","https://static.pierrefrey.com/uploads/product/packshots/960fe9a1-5ca5-4b1d-9194-136b499f7f83/VbhwHcext1pOShv0kgSx.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/a27abd46-fb96-4915-8f89-55a1390839e7/QM8aY4mHCGMD48xk6S8N.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a27abd46-fb96-4915-8f89-55a1390839e7/G8HAp8wwr6YwnsjDnX7f.webp,https://static.pierrefrey.com/uploads/product/packshots/202426a7-e2d4-4d39-83ab-09d949ed18db/yynbaB8p8jbmrHdBu30X.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/f58948ff-ee1f-433c-93d4-d6d3c2070dac/VIydmRPxXE4zZGc1cDjD.webp,https://static.pierrefrey.com/uploads/product/packshots/960fe9a1-5ca5-4b1d-9194-136b499f7f83/VbhwHcext1pOShv0kgSx.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/a27abd46-fb96-4915-8f89-55a1390839e7/QM8aY4mHCGMD48xk6S8N.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/a27abd46-fb96-4915-8f89-55a1390839e7/QM8aY4mHCGMD48xk6S8N.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:36.579Z"}
+{"mfr_sku":"FP258001","pattern_name":"Plisse plumes","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP258001-plisse-plumes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a34919d7-ee31-4e94-bba4-f104c2812d73/SZkz19YbeIjUowETGwq7_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Offset repeat 1/3","Weight":"465 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Offset repeat 1/3","weight":"465 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Plisse plumes","description":"Small width printed wallpapers - Vinyls - Printed wallpapers, Plisse plumes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a34919d7-ee31-4e94-bba4-f104c2812d73/SZkz19YbeIjUowETGwq7.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a34919d7-ee31-4e94-bba4-f104c2812d73/SZkz19YbeIjUowETGwq7.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/669de92f-2a02-4d8f-832f-ec9991490df4/oqHe2aoMCktFu9aebN6X.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/a34919d7-ee31-4e94-bba4-f104c2812d73/HbZu4gXtQvK24YlR8hrV.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a34919d7-ee31-4e94-bba4-f104c2812d73/SZkz19YbeIjUowETGwq7.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/669de92f-2a02-4d8f-832f-ec9991490df4/oqHe2aoMCktFu9aebN6X.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/a34919d7-ee31-4e94-bba4-f104c2812d73/HbZu4gXtQvK24YlR8hrV.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/a34919d7-ee31-4e94-bba4-f104c2812d73/HbZu4gXtQvK24YlR8hrV.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:37.403Z"}
+{"mfr_sku":"FP248001","pattern_name":"Palette","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP248001-palette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 53 cm - 20,86 inch | Half drop repeat","Weight":"170 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 53 cm - 20,86 inch | Half drop repeat","weight":"170 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Palette","description":"Wide width printed wallpapers, Palette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/3ac4603a-9266-4555-a368-23b335ac340e/IW67pbU6LHUXNfFchkH2.webp","https://static.pierrefrey.com/uploads/product/packshots/dd43ca90-c9fd-4aba-9d5f-01ca2789caa1/vd3heB6ANGwvSQNSdnGD.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/ae4f8cdd-a118-4552-a349-9c6b472deb1a/dHLVbSzfPrRzgEYeef4D.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/3ac4603a-9266-4555-a368-23b335ac340e/IW67pbU6LHUXNfFchkH2.webp,https://static.pierrefrey.com/uploads/product/packshots/dd43ca90-c9fd-4aba-9d5f-01ca2789caa1/vd3heB6ANGwvSQNSdnGD.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/ae4f8cdd-a118-4552-a349-9c6b472deb1a/dHLVbSzfPrRzgEYeef4D.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/ae4f8cdd-a118-4552-a349-9c6b472deb1a/dHLVbSzfPrRzgEYeef4D.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:38.013Z"}
+{"mfr_sku":"FP249001","pattern_name":"Bebelle","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP249001-bebelle","list_image":"https://static.pierrefrey.com/uploads/product/packshots/af25491f-f1d4-47ab-854f-25f989bf5adb/bLIFU6JiaG3iTpvFJgWs_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 136 cm - 53,00 inch | V: 95 cm - 37,40 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 136 cm - 53,00 inch | V: 95 cm - 37,40 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bebelle","description":"Wide width printed wallpapers, Bebelle. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/af25491f-f1d4-47ab-854f-25f989bf5adb/bLIFU6JiaG3iTpvFJgWs.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/af25491f-f1d4-47ab-854f-25f989bf5adb/bLIFU6JiaG3iTpvFJgWs.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/3acaaf7b-5b72-4834-89d2-f430d090ad5a/9CtwFeQdCNxAe2q9ejPe.webp","https://static.pierrefrey.com/uploads/product/packshots/3e9f0b4e-2751-4fd0-8b90-699655b26188/mMWyPSsYXnq7eKx7AG2Z.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/af25491f-f1d4-47ab-854f-25f989bf5adb/RdnURbKttrGiboPZE0rA.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/af25491f-f1d4-47ab-854f-25f989bf5adb/bLIFU6JiaG3iTpvFJgWs.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/3acaaf7b-5b72-4834-89d2-f430d090ad5a/9CtwFeQdCNxAe2q9ejPe.webp,https://static.pierrefrey.com/uploads/product/packshots/3e9f0b4e-2751-4fd0-8b90-699655b26188/mMWyPSsYXnq7eKx7AG2Z.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/af25491f-f1d4-47ab-854f-25f989bf5adb/RdnURbKttrGiboPZE0rA.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/af25491f-f1d4-47ab-854f-25f989bf5adb/RdnURbKttrGiboPZE0rA.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:38.732Z"}
+{"mfr_sku":"FP269002","pattern_name":"Tilly","color_name":"Sauge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP269002-tilly","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b14e1f89-c94e-4ff1-8b40-ba1cab9963e0/CIBfu2mhZX8YpGhz9Nba_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch | V: 21 cm - 8,26 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 21 cm - 8,26 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tilly","description":"Printed wallpapers, Tilly. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b14e1f89-c94e-4ff1-8b40-ba1cab9963e0/CIBfu2mhZX8YpGhz9Nba.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b14e1f89-c94e-4ff1-8b40-ba1cab9963e0/CIBfu2mhZX8YpGhz9Nba.webp","https://static.pierrefrey.com/uploads/product/packshots/ca0bc95c-16ba-40c7-ae6c-a11289c78161/ZKQZIW6BFSM3ykNHzD4U.webp","https://static.pierrefrey.com/uploads/product/packshots/6ba35144-b148-4296-a333-77851f7dc731/en1XoEofn8EcIMznXAsi.webp","https://static.pierrefrey.com/uploads/product/packshots/28b3413b-cfe7-4cd5-95be-c53d8caaf469/JaviJz1SWTf0QT5MN2ff.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/f32f06b5-11cd-489c-ae01-ab250406060c/AP5oSOs6ZNRPGKukeKiA.webp","https://static.pierrefrey.com/uploads/product/packshots/bedd23f4-e340-411c-a142-d70ffa7f977d/qOEfUreYcYiNaPcE8bmV.webp","https://static.pierrefrey.com/uploads/product/packshots/59ff5eea-9682-42ce-8bf4-1503dec72acc/fcqc2YcQijgQHhqBj6y0.webp","https://static.pierrefrey.com/uploads/product/packshots/e00ca197-b68a-4181-8b1d-7051f4747dd5/9uobPhrAIeH2Ncx1qTJN.webp","https://static.pierrefrey.com/uploads/product/packshots/5590f4ad-3016-40ca-9100-379fe09ab2a3/8hECqwptm4RB8xxTUk8P.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/b14e1f89-c94e-4ff1-8b40-ba1cab9963e0/OefdnBY5MG1NB9YiZprA.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b14e1f89-c94e-4ff1-8b40-ba1cab9963e0/CIBfu2mhZX8YpGhz9Nba.webp,https://static.pierrefrey.com/uploads/product/packshots/ca0bc95c-16ba-40c7-ae6c-a11289c78161/ZKQZIW6BFSM3ykNHzD4U.webp,https://static.pierrefrey.com/uploads/product/packshots/6ba35144-b148-4296-a333-77851f7dc731/en1XoEofn8EcIMznXAsi.webp,https://static.pierrefrey.com/uploads/product/packshots/28b3413b-cfe7-4cd5-95be-c53d8caaf469/JaviJz1SWTf0QT5MN2ff.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/f32f06b5-11cd-489c-ae01-ab250406060c/AP5oSOs6ZNRPGKukeKiA.webp,https://static.pierrefrey.com/uploads/product/packshots/bedd23f4-e340-411c-a142-d70ffa7f977d/qOEfUreYcYiNaPcE8bmV.webp,https://static.pierrefrey.com/uploads/product/packshots/59ff5eea-9682-42ce-8bf4-1503dec72acc/fcqc2YcQijgQHhqBj6y0.webp,https://static.pierrefrey.com/uploads/product/packshots/e00ca197-b68a-4181-8b1d-7051f4747dd5/9uobPhrAIeH2Ncx1qTJN.webp,https://static.pierrefrey.com/uploads/product/packshots/5590f4ad-3016-40ca-9100-379fe09ab2a3/8hECqwptm4RB8xxTUk8P.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/b14e1f89-c94e-4ff1-8b40-ba1cab9963e0/OefdnBY5MG1NB9YiZprA.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/b14e1f89-c94e-4ff1-8b40-ba1cab9963e0/OefdnBY5MG1NB9YiZprA.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:39.523Z"}
+{"mfr_sku":"FP282001","pattern_name":"L'herbier du jardin","color_name":"Prairie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP282001-lherbier-du-jardin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 118 cm - 46,45 inch | Straight repeat","Weight":"390 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A"},"width":"87 cm / 34,25 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 118 cm - 46,45 inch | Straight repeat","weight":"390 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"L'herbier du jardin","description":"Printed wallpapers, L'herbier du jardin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/rhIEo4UfFrcdxLblRXEn.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/rhIEo4UfFrcdxLblRXEn.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/rhIEo4UfFrcdxLblRXEn.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:40.352Z"}
+{"mfr_sku":"FP272001","pattern_name":"L'allee du roi","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP272001-lallee-du-roi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/beec07f4-cc33-471e-b587-f2520bafce87/E4ZwsPtrcv59tvvwb2wq_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 36 cm - 14,17 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 36 cm - 14,17 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"L'allee du roi","description":"Printed wallpapers, L'allee du roi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/beec07f4-cc33-471e-b587-f2520bafce87/E4ZwsPtrcv59tvvwb2wq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/beec07f4-cc33-471e-b587-f2520bafce87/E4ZwsPtrcv59tvvwb2wq.webp","https://static.pierrefrey.com/uploads/product/packshots/1328fe28-2456-453e-a779-a3c8a75cb067/BriEivTLeSUUwASIFgwO.webp","https://static.pierrefrey.com/uploads/product/packshots/83556aa6-f0da-435d-8aff-b9279b003b77/ZcT7rb9BrQApsvzskZ9M.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/e5834c10-a729-478b-a6e0-42b2895aaaa3/xEcpjJvf8OcCYPtuV5hN.webp","https://static.pierrefrey.com/uploads/product/packshots/0499d6bd-87fc-4ff5-a481-ff314419759f/vXzJnK4k0Lc42kq2AWoL.webp","https://static.pierrefrey.com/uploads/product/packshots/3152081e-650a-49d7-a0dd-9940ac45802b/55CCwc1PY9nTJ8OaBOIx.webp","https://static.pierrefrey.com/uploads/product/packshots/546b00b2-13a4-4214-b042-5413fdd1a1a8/eKSwEihlnegVpG20Kyqd.webp","https://static.pierrefrey.com/uploads/product/packshots/da92a454-ea8e-40ce-b318-d66f811150b2/B1IgQrszdWTNur41zmD6.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/beec07f4-cc33-471e-b587-f2520bafce87/8rtiIWGDHVMTaWG03Js9.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/beec07f4-cc33-471e-b587-f2520bafce87/E4ZwsPtrcv59tvvwb2wq.webp,https://static.pierrefrey.com/uploads/product/packshots/1328fe28-2456-453e-a779-a3c8a75cb067/BriEivTLeSUUwASIFgwO.webp,https://static.pierrefrey.com/uploads/product/packshots/83556aa6-f0da-435d-8aff-b9279b003b77/ZcT7rb9BrQApsvzskZ9M.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/e5834c10-a729-478b-a6e0-42b2895aaaa3/xEcpjJvf8OcCYPtuV5hN.webp,https://static.pierrefrey.com/uploads/product/packshots/0499d6bd-87fc-4ff5-a481-ff314419759f/vXzJnK4k0Lc42kq2AWoL.webp,https://static.pierrefrey.com/uploads/product/packshots/3152081e-650a-49d7-a0dd-9940ac45802b/55CCwc1PY9nTJ8OaBOIx.webp,https://static.pierrefrey.com/uploads/product/packshots/546b00b2-13a4-4214-b042-5413fdd1a1a8/eKSwEihlnegVpG20Kyqd.webp,https://static.pierrefrey.com/uploads/product/packshots/da92a454-ea8e-40ce-b318-d66f811150b2/B1IgQrszdWTNur41zmD6.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/beec07f4-cc33-471e-b587-f2520bafce87/8rtiIWGDHVMTaWG03Js9.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/beec07f4-cc33-471e-b587-f2520bafce87/8rtiIWGDHVMTaWG03Js9.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:41.067Z"}
+{"mfr_sku":"FP281003","pattern_name":"Charmes","color_name":"Ocre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP281003-charmes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/bf5b2ec0-597a-42b0-a520-7b8cf47a8906/MD5eyJ1rXqcGJe2P4zlL_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 98 cm - 38,00 inch | V: 98 cm - 38,58 inch | Straight repeat","Weight":"435 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 98 cm - 38,00 inch | V: 98 cm - 38,58 inch | Straight repeat","weight":"435 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Charmes","description":"Vinyls - Printed wallpapers, Charmes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/bf5b2ec0-597a-42b0-a520-7b8cf47a8906/MD5eyJ1rXqcGJe2P4zlL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/bf5b2ec0-597a-42b0-a520-7b8cf47a8906/MD5eyJ1rXqcGJe2P4zlL.webp","https://static.pierrefrey.com/uploads/product/packshots/63cab3b2-2f54-44de-b968-e690ea4b7cc9/iQZP7WkQzeGY6WcMzX2k.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9fcb1-a48a-4f01-ba6c-1120e74d21d1/19l79hME9rYOh2IPuwb0.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/bf5b2ec0-597a-42b0-a520-7b8cf47a8906/BsRmQTSePoaKAOmaiaId.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/bf5b2ec0-597a-42b0-a520-7b8cf47a8906/MD5eyJ1rXqcGJe2P4zlL.webp,https://static.pierrefrey.com/uploads/product/packshots/63cab3b2-2f54-44de-b968-e690ea4b7cc9/iQZP7WkQzeGY6WcMzX2k.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9fcb1-a48a-4f01-ba6c-1120e74d21d1/19l79hME9rYOh2IPuwb0.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/bf5b2ec0-597a-42b0-a520-7b8cf47a8906/BsRmQTSePoaKAOmaiaId.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/bf5b2ec0-597a-42b0-a520-7b8cf47a8906/BsRmQTSePoaKAOmaiaId.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:41.907Z"}
+{"mfr_sku":"FP275001","pattern_name":"Les allees de marly","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP275001-les-allees-de-marly","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 139 cm - 54,72 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 139 cm - 54,72 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les allees de marly","description":"Wide width printed wallpapers, Les allees de marly. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/bdf07147-79d9-4e97-9a79-0fda0a9a59d2/tyuVjL5YxdvcGff9xLEf.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/c4169223-3498-46fe-919d-59557dbac620/Z3pOO2bWG76XyrheJ7SA.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/bdf07147-79d9-4e97-9a79-0fda0a9a59d2/tyuVjL5YxdvcGff9xLEf.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/c4169223-3498-46fe-919d-59557dbac620/Z3pOO2bWG76XyrheJ7SA.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/c4169223-3498-46fe-919d-59557dbac620/Z3pOO2bWG76XyrheJ7SA.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:42.590Z"}
+{"mfr_sku":"FP287003","pattern_name":"Cerisy","color_name":"Argile","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP287003-cerisy","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c8ad6d0c-a99d-49e0-9f8e-3dde41aa5512/ID59mDaHq0Phnw3TczLo_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"120 cm / 47,24 inch","Repeat":"H: 20 cm - 7,00 inch | V: 65 cm - 25,59 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","Information":"Panel effect"},"width":"120 cm / 47,24 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 20 cm - 7,00 inch | V: 65 cm - 25,59 inch | Straight repeat","weight":"400 gr / m²","certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cerisy","description":"Wide width printed wallpapers - Embossed patterns, Cerisy. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c8ad6d0c-a99d-49e0-9f8e-3dde41aa5512/ID59mDaHq0Phnw3TczLo.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c8ad6d0c-a99d-49e0-9f8e-3dde41aa5512/ID59mDaHq0Phnw3TczLo.webp","https://static.pierrefrey.com/uploads/product/packshots/493e9b07-0609-411e-9faf-bedabf87489b/6XvXYmvEZr4CFcMw7oET.webp","https://static.pierrefrey.com/uploads/product/packshots/968d81fb-c8cc-47f4-b441-029b3c492f63/Lcj3dKenGLVbOL3lHMQ8.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/f05a76df-cf0b-4940-8548-cfebbb1fcb80/AOxMoj3d1UcTZUZyE8oT.webp","https://static.pierrefrey.com/uploads/product/packshots/895fb3e8-f91d-4fd5-94d7-423e853a704e/BgzIGZiij6RWcIKsJOys.webp","https://static.pierrefrey.com/uploads/product/packshots/efe3d825-3dca-4c56-9de0-f62c53664cb4/LNKqcZITb2zB8b2c8TVo.webp","https://static.pierrefrey.com/uploads/product/packshots/f71d16a1-57f1-4c24-9d29-f26dcbeb69fc/kw2E3B4alPdwPxNfItaV.webp","https://static.pierrefrey.com/uploads/product/packshots/da52b911-0177-4191-935a-ed804642b5e6/GJt8b74jNPWNZyp7uRCW.webp","https://static.pierrefrey.com/uploads/product/packshots/5d31fbb9-618b-43a3-b1af-1ee01f8b8b86/XqcC3LfKRKF3DnyA0x3q.webp","https://static.pierrefrey.com/uploads/product/packshots/4930e742-a6d1-4749-a7cb-8fbdfc5614dd/yEZWvjEZFNsrag25vMJB.webp","https://static.pierrefrey.com/uploads/product/packshots/7dfbd49c-fc1d-4b3f-91f5-16cafc6e821b/GR3PLaPc1HowAeRsxdWR.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/c8ad6d0c-a99d-49e0-9f8e-3dde41aa5512/8q56qXd0syqSQNEZRf8e.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c8ad6d0c-a99d-49e0-9f8e-3dde41aa5512/ID59mDaHq0Phnw3TczLo.webp,https://static.pierrefrey.com/uploads/product/packshots/493e9b07-0609-411e-9faf-bedabf87489b/6XvXYmvEZr4CFcMw7oET.webp,https://static.pierrefrey.com/uploads/product/packshots/968d81fb-c8cc-47f4-b441-029b3c492f63/Lcj3dKenGLVbOL3lHMQ8.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/f05a76df-cf0b-4940-8548-cfebbb1fcb80/AOxMoj3d1UcTZUZyE8oT.webp,https://static.pierrefrey.com/uploads/product/packshots/895fb3e8-f91d-4fd5-94d7-423e853a704e/BgzIGZiij6RWcIKsJOys.webp,https://static.pierrefrey.com/uploads/product/packshots/efe3d825-3dca-4c56-9de0-f62c53664cb4/LNKqcZITb2zB8b2c8TVo.webp,https://static.pierrefrey.com/uploads/product/packshots/f71d16a1-57f1-4c24-9d29-f26dcbeb69fc/kw2E3B4alPdwPxNfItaV.webp,https://static.pierrefrey.com/uploads/product/packshots/da52b911-0177-4191-935a-ed804642b5e6/GJt8b74jNPWNZyp7uRCW.webp,https://static.pierrefrey.com/uploads/product/packshots/5d31fbb9-618b-43a3-b1af-1ee01f8b8b86/XqcC3LfKRKF3DnyA0x3q.webp,https://static.pierrefrey.com/uploads/product/packshots/4930e742-a6d1-4749-a7cb-8fbdfc5614dd/yEZWvjEZFNsrag25vMJB.webp,https://static.pierrefrey.com/uploads/product/packshots/7dfbd49c-fc1d-4b3f-91f5-16cafc6e821b/GR3PLaPc1HowAeRsxdWR.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/c8ad6d0c-a99d-49e0-9f8e-3dde41aa5512/8q56qXd0syqSQNEZRf8e.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/c8ad6d0c-a99d-49e0-9f8e-3dde41aa5512/8q56qXd0syqSQNEZRf8e.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:43.266Z"}
+{"mfr_sku":"FP269001","pattern_name":"Tilly","color_name":"Or","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP269001-tilly","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ca0bc95c-16ba-40c7-ae6c-a11289c78161/ZKQZIW6BFSM3ykNHzD4U_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch | V: 21 cm - 8,26 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 21 cm - 8,26 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tilly","description":"Printed wallpapers, Tilly. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ca0bc95c-16ba-40c7-ae6c-a11289c78161/ZKQZIW6BFSM3ykNHzD4U.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ca0bc95c-16ba-40c7-ae6c-a11289c78161/ZKQZIW6BFSM3ykNHzD4U.webp","https://static.pierrefrey.com/uploads/product/packshots/b14e1f89-c94e-4ff1-8b40-ba1cab9963e0/CIBfu2mhZX8YpGhz9Nba.webp","https://static.pierrefrey.com/uploads/product/packshots/6ba35144-b148-4296-a333-77851f7dc731/en1XoEofn8EcIMznXAsi.webp","https://static.pierrefrey.com/uploads/product/packshots/28b3413b-cfe7-4cd5-95be-c53d8caaf469/JaviJz1SWTf0QT5MN2ff.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/f32f06b5-11cd-489c-ae01-ab250406060c/AP5oSOs6ZNRPGKukeKiA.webp","https://static.pierrefrey.com/uploads/product/packshots/bedd23f4-e340-411c-a142-d70ffa7f977d/qOEfUreYcYiNaPcE8bmV.webp","https://static.pierrefrey.com/uploads/product/packshots/59ff5eea-9682-42ce-8bf4-1503dec72acc/fcqc2YcQijgQHhqBj6y0.webp","https://static.pierrefrey.com/uploads/product/packshots/e00ca197-b68a-4181-8b1d-7051f4747dd5/9uobPhrAIeH2Ncx1qTJN.webp","https://static.pierrefrey.com/uploads/product/packshots/5590f4ad-3016-40ca-9100-379fe09ab2a3/8hECqwptm4RB8xxTUk8P.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/ca0bc95c-16ba-40c7-ae6c-a11289c78161/BIxj3dikOXkbGs5xIJV5.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ca0bc95c-16ba-40c7-ae6c-a11289c78161/ZKQZIW6BFSM3ykNHzD4U.webp,https://static.pierrefrey.com/uploads/product/packshots/b14e1f89-c94e-4ff1-8b40-ba1cab9963e0/CIBfu2mhZX8YpGhz9Nba.webp,https://static.pierrefrey.com/uploads/product/packshots/6ba35144-b148-4296-a333-77851f7dc731/en1XoEofn8EcIMznXAsi.webp,https://static.pierrefrey.com/uploads/product/packshots/28b3413b-cfe7-4cd5-95be-c53d8caaf469/JaviJz1SWTf0QT5MN2ff.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/f32f06b5-11cd-489c-ae01-ab250406060c/AP5oSOs6ZNRPGKukeKiA.webp,https://static.pierrefrey.com/uploads/product/packshots/bedd23f4-e340-411c-a142-d70ffa7f977d/qOEfUreYcYiNaPcE8bmV.webp,https://static.pierrefrey.com/uploads/product/packshots/59ff5eea-9682-42ce-8bf4-1503dec72acc/fcqc2YcQijgQHhqBj6y0.webp,https://static.pierrefrey.com/uploads/product/packshots/e00ca197-b68a-4181-8b1d-7051f4747dd5/9uobPhrAIeH2Ncx1qTJN.webp,https://static.pierrefrey.com/uploads/product/packshots/5590f4ad-3016-40ca-9100-379fe09ab2a3/8hECqwptm4RB8xxTUk8P.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/ca0bc95c-16ba-40c7-ae6c-a11289c78161/BIxj3dikOXkbGs5xIJV5.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/ca0bc95c-16ba-40c7-ae6c-a11289c78161/BIxj3dikOXkbGs5xIJV5.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:44.008Z"}
+{"mfr_sku":"FP291003","pattern_name":"Alencon","color_name":"Riviere","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP291003-alencon","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cf80eee3-ce36-4c56-8af0-dea8afd2d840/MVu2CtCd4lQoLgQCkW02_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"91 % Viscose - 5 % Polyester - 4 % Cotton","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 160 cm - 62,99 inch | Straight repeat","Weight":"540 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable"},"width":"140 cm / 55,11 inch","composition":"91 % Viscose - 5 % Polyester - 4 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 160 cm - 62,99 inch | Straight repeat","weight":"540 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Alencon","description":"Paperbacked fabrics, Alencon. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cf80eee3-ce36-4c56-8af0-dea8afd2d840/MVu2CtCd4lQoLgQCkW02.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cf80eee3-ce36-4c56-8af0-dea8afd2d840/MVu2CtCd4lQoLgQCkW02.webp","https://static.pierrefrey.com/uploads/product/packshots/20c66cc2-f5d0-4ec4-b4f6-56d6f73ddb94/JJMEJgfj0lPaoupaBGBR.webp","https://static.pierrefrey.com/uploads/product/packshots/ed855c7b-8a74-4bfc-a641-d415a7eeac14/R8K3yCoLzus4E8AAFUZv.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/b64e308e-6a6b-4e14-8b51-37ff73478051/Dg8If04J1mSl53QJEx9z.webp","https://static.pierrefrey.com/uploads/product/packshots/9c814a2f-f218-4a8d-acc5-64dd4722a606/BhZV2YhykrVUda2wcUSW.webp","https://static.pierrefrey.com/uploads/product/packshots/f26a10e8-d427-48a1-95ed-f7bc5aa862e0/Q9K5mxNe5ssR69qvz2aA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/cf80eee3-ce36-4c56-8af0-dea8afd2d840/Pwamg51vpUD7qI1Sevc8.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cf80eee3-ce36-4c56-8af0-dea8afd2d840/MVu2CtCd4lQoLgQCkW02.webp,https://static.pierrefrey.com/uploads/product/packshots/20c66cc2-f5d0-4ec4-b4f6-56d6f73ddb94/JJMEJgfj0lPaoupaBGBR.webp,https://static.pierrefrey.com/uploads/product/packshots/ed855c7b-8a74-4bfc-a641-d415a7eeac14/R8K3yCoLzus4E8AAFUZv.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/b64e308e-6a6b-4e14-8b51-37ff73478051/Dg8If04J1mSl53QJEx9z.webp,https://static.pierrefrey.com/uploads/product/packshots/9c814a2f-f218-4a8d-acc5-64dd4722a606/BhZV2YhykrVUda2wcUSW.webp,https://static.pierrefrey.com/uploads/product/packshots/f26a10e8-d427-48a1-95ed-f7bc5aa862e0/Q9K5mxNe5ssR69qvz2aA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/cf80eee3-ce36-4c56-8af0-dea8afd2d840/Pwamg51vpUD7qI1Sevc8.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/cf80eee3-ce36-4c56-8af0-dea8afd2d840/Pwamg51vpUD7qI1Sevc8.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:44.789Z"}
+{"mfr_sku":"FP252002","pattern_name":"Noisette","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP252002-noisette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 64 cm - 25,00 inch | V: 46 cm - 18,11 inch | Free match","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 64 cm - 25,00 inch | V: 46 cm - 18,11 inch | Free match","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Noisette","description":"Printed wallpapers, Noisette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/bJLsKq6JVAfcB0AaNFIi.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/bJLsKq6JVAfcB0AaNFIi.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/bJLsKq6JVAfcB0AaNFIi.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:45.479Z"}
+{"mfr_sku":"FP274001","pattern_name":"Les topiaires","color_name":"Sauge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP274001-les-topiaires","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 87 cm - 34,25 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 87 cm - 34,25 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les topiaires","description":"Wide width printed wallpapers, Les topiaires. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/89ddaaad-903a-4d82-9bec-116e85ac9308/9fbAtVoXGPxFmtjGGgM9.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/d1dadc71-01f4-42d9-8a91-af44a68b39d5/4kpgKPKtELxVNQMMOqAl.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/89ddaaad-903a-4d82-9bec-116e85ac9308/9fbAtVoXGPxFmtjGGgM9.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/d1dadc71-01f4-42d9-8a91-af44a68b39d5/4kpgKPKtELxVNQMMOqAl.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/d1dadc71-01f4-42d9-8a91-af44a68b39d5/4kpgKPKtELxVNQMMOqAl.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:46.265Z"}
+{"mfr_sku":"FP274002","pattern_name":"Les topiaires","color_name":"Jardin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP274002-les-topiaires","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 87 cm - 34,25 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 87 cm - 34,25 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les topiaires","description":"Wide width printed wallpapers, Les topiaires. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/89ddaaad-903a-4d82-9bec-116e85ac9308/9fbAtVoXGPxFmtjGGgM9.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/d2395560-47bb-4b63-a41b-77e33e50173a/kL9hgQUQd1UsESyYEAIf.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/89ddaaad-903a-4d82-9bec-116e85ac9308/9fbAtVoXGPxFmtjGGgM9.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/d2395560-47bb-4b63-a41b-77e33e50173a/kL9hgQUQd1UsESyYEAIf.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/d2395560-47bb-4b63-a41b-77e33e50173a/kL9hgQUQd1UsESyYEAIf.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:46.879Z"}
+{"mfr_sku":"FP266001","pattern_name":"Fleurs de pommiers","color_name":"Fp266001","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP266001-fleurs-de-pommiers","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Noëmie Vallerand","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","Weight":"150 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fleurs de pommiers","description":"Wide width printed wallpapers, Fleurs de pommiers. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/d33dca44-b075-412a-9c4d-ffc1e8c594d1/YO3J7eih23wYxqVVbOHg.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/d33dca44-b075-412a-9c4d-ffc1e8c594d1/YO3J7eih23wYxqVVbOHg.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/d33dca44-b075-412a-9c4d-ffc1e8c594d1/YO3J7eih23wYxqVVbOHg.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:47.688Z"}
+{"mfr_sku":"FP250002","pattern_name":"Cancun","color_name":"Jungle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP250002-cancune","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"85 cm / 33,46 inch","Repeat":"H: 43 cm - 16,00 inch | V: 36 cm - 14,17 inch | Free match","Weight":"260 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A"},"width":"85 cm / 33,46 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 43 cm - 16,00 inch | V: 36 cm - 14,17 inch | Free match","weight":"260 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cancun","description":"Small width printed wallpapers - Paperbacked fabrics, Cancun. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/d598f3b2-c498-4604-91d8-6d821bf4c030/yUz98kp7wshii3fMmgFE.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/d598f3b2-c498-4604-91d8-6d821bf4c030/yUz98kp7wshii3fMmgFE.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/d598f3b2-c498-4604-91d8-6d821bf4c030/yUz98kp7wshii3fMmgFE.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:48.319Z"}
+{"mfr_sku":"FP289002","pattern_name":"Harcourt","color_name":"Moutarde","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP289002-harcourt","list_image":"https://static.pierrefrey.com/uploads/product/packshots/dc123e31-15a3-4ffd-968f-4e49a5b0e212/e8uwXpm04CG6frPX3EiR_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"131 cm / 51,57 inch","Repeat":"H: 66 cm - 25,00 inch | V: 42 cm - 16,53 inch | Straight repeat","Weight":"325 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A"},"width":"131 cm / 51,57 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 66 cm - 25,00 inch | V: 42 cm - 16,53 inch | Straight repeat","weight":"325 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Harcourt","description":"Wide width printed wallpapers - Paperbacked fabrics - Printed wallpapers, Harcourt. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/dc123e31-15a3-4ffd-968f-4e49a5b0e212/e8uwXpm04CG6frPX3EiR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/dc123e31-15a3-4ffd-968f-4e49a5b0e212/e8uwXpm04CG6frPX3EiR.webp","https://static.pierrefrey.com/uploads/product/packshots/2e898bee-4fce-4dff-b4a7-62f01f253c59/6wz8AzSynYnQ7IN6MoaU.webp","https://static.pierrefrey.com/uploads/product/packshots/3a077868-0074-4463-b6d1-a07a6eb386da/jDPfwOOVdGMSS2HZnl4n.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/e8c6d227-575b-4d06-b82c-784bbf98d9d4/EKpCZSWPKUg8hWCAoRpB.webp","https://static.pierrefrey.com/uploads/product/packshots/e7c0d540-23d8-47e4-91cf-e3c3a782fe9d/XZh3zm1nOVAdYb8cDQkV.webp","https://static.pierrefrey.com/uploads/product/packshots/09733d6b-7156-46ab-b1ac-8157c2aa7997/5OPxg5LgvHlDppXj0b10.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/dc123e31-15a3-4ffd-968f-4e49a5b0e212/jWBmRdh8gyZxhn3T1zpC.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/dc123e31-15a3-4ffd-968f-4e49a5b0e212/e8uwXpm04CG6frPX3EiR.webp,https://static.pierrefrey.com/uploads/product/packshots/2e898bee-4fce-4dff-b4a7-62f01f253c59/6wz8AzSynYnQ7IN6MoaU.webp,https://static.pierrefrey.com/uploads/product/packshots/3a077868-0074-4463-b6d1-a07a6eb386da/jDPfwOOVdGMSS2HZnl4n.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/e8c6d227-575b-4d06-b82c-784bbf98d9d4/EKpCZSWPKUg8hWCAoRpB.webp,https://static.pierrefrey.com/uploads/product/packshots/e7c0d540-23d8-47e4-91cf-e3c3a782fe9d/XZh3zm1nOVAdYb8cDQkV.webp,https://static.pierrefrey.com/uploads/product/packshots/09733d6b-7156-46ab-b1ac-8157c2aa7997/5OPxg5LgvHlDppXj0b10.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/dc123e31-15a3-4ffd-968f-4e49a5b0e212/jWBmRdh8gyZxhn3T1zpC.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/dc123e31-15a3-4ffd-968f-4e49a5b0e212/jWBmRdh8gyZxhn3T1zpC.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:49.011Z"}
+{"mfr_sku":"FP270002","pattern_name":"Belle de provence","color_name":"Prairie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP270002-belle-de-provence","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 16 cm - 6,29 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 16 cm - 6,29 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Belle de provence","description":"Printed wallpapers, Belle de provence. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/e17601d7-664b-47fc-acb9-db82adfa07ef/ECHdQ3JDkluWV8ZvLIjy.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/e17601d7-664b-47fc-acb9-db82adfa07ef/ECHdQ3JDkluWV8ZvLIjy.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/e17601d7-664b-47fc-acb9-db82adfa07ef/ECHdQ3JDkluWV8ZvLIjy.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:49.819Z"}
+{"mfr_sku":"FP284002","pattern_name":"Les quatre potagers","color_name":"Vegetal","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP284002-les-quatre-potagers","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Artist":"Pauline Chanet","Sales Unit":"Available per meter/yard","Backing":"OSNABURG","Composition":"100 % Vinyl","Width":"130 cm / 51,18 inch","Repeat":"H: 130 cm - 51,00 inch | V: 121 cm - 47,63 inch | Straight repeat","Weight":"450 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A"},"width":"130 cm / 51,18 inch","composition":"100 % Vinyl","material":"OSNABURG","pattern_repeat":"H: 130 cm - 51,00 inch | V: 121 cm - 47,63 inch | Straight repeat","weight":"450 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les quatre potagers","description":"Wide width printed wallpapers - Vinyls, Les quatre potagers. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/dNi8k5uJYT4EL4lAJdNv.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/dNi8k5uJYT4EL4lAJdNv.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/dNi8k5uJYT4EL4lAJdNv.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:50.538Z"}
+{"mfr_sku":"FP291002","pattern_name":"Alencon","color_name":"Foret","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP291002-alencon","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ed855c7b-8a74-4bfc-a641-d415a7eeac14/R8K3yCoLzus4E8AAFUZv_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"91 % Viscose - 5 % Polyester - 4 % Cotton","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 160 cm - 62,99 inch | Straight repeat","Weight":"540 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable"},"width":"140 cm / 55,11 inch","composition":"91 % Viscose - 5 % Polyester - 4 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 160 cm - 62,99 inch | Straight repeat","weight":"540 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Alencon","description":"Paperbacked fabrics, Alencon. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ed855c7b-8a74-4bfc-a641-d415a7eeac14/R8K3yCoLzus4E8AAFUZv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ed855c7b-8a74-4bfc-a641-d415a7eeac14/R8K3yCoLzus4E8AAFUZv.webp","https://static.pierrefrey.com/uploads/product/packshots/20c66cc2-f5d0-4ec4-b4f6-56d6f73ddb94/JJMEJgfj0lPaoupaBGBR.webp","https://static.pierrefrey.com/uploads/product/packshots/cf80eee3-ce36-4c56-8af0-dea8afd2d840/MVu2CtCd4lQoLgQCkW02.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/b64e308e-6a6b-4e14-8b51-37ff73478051/Dg8If04J1mSl53QJEx9z.webp","https://static.pierrefrey.com/uploads/product/packshots/9c814a2f-f218-4a8d-acc5-64dd4722a606/BhZV2YhykrVUda2wcUSW.webp","https://static.pierrefrey.com/uploads/product/packshots/f26a10e8-d427-48a1-95ed-f7bc5aa862e0/Q9K5mxNe5ssR69qvz2aA.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/ed855c7b-8a74-4bfc-a641-d415a7eeac14/tUUBf5tlYPRbPGZXpB0h.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ed855c7b-8a74-4bfc-a641-d415a7eeac14/R8K3yCoLzus4E8AAFUZv.webp,https://static.pierrefrey.com/uploads/product/packshots/20c66cc2-f5d0-4ec4-b4f6-56d6f73ddb94/JJMEJgfj0lPaoupaBGBR.webp,https://static.pierrefrey.com/uploads/product/packshots/cf80eee3-ce36-4c56-8af0-dea8afd2d840/MVu2CtCd4lQoLgQCkW02.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/b64e308e-6a6b-4e14-8b51-37ff73478051/Dg8If04J1mSl53QJEx9z.webp,https://static.pierrefrey.com/uploads/product/packshots/9c814a2f-f218-4a8d-acc5-64dd4722a606/BhZV2YhykrVUda2wcUSW.webp,https://static.pierrefrey.com/uploads/product/packshots/f26a10e8-d427-48a1-95ed-f7bc5aa862e0/Q9K5mxNe5ssR69qvz2aA.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/ed855c7b-8a74-4bfc-a641-d415a7eeac14/tUUBf5tlYPRbPGZXpB0h.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/ed855c7b-8a74-4bfc-a641-d415a7eeac14/tUUBf5tlYPRbPGZXpB0h.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:51.252Z"}
+{"mfr_sku":"FP283001","pattern_name":"Fleurs de guise","color_name":"Verdure","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP283001-fleurs-de-guise","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"87 cm / 34,25 inch","Repeat":"H: 44 cm - 17,00 inch | V: 50 cm - 19,68 inch | Straight repeat","Weight":"390 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A"},"width":"87 cm / 34,25 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 44 cm - 17,00 inch | V: 50 cm - 19,68 inch | Straight repeat","weight":"390 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fleurs de guise","description":"Printed wallpapers, Fleurs de guise. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/uZ3eqr6ZcdoP2G9Xxckk.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/uZ3eqr6ZcdoP2G9Xxckk.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/uZ3eqr6ZcdoP2G9Xxckk.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:51.870Z"}
+{"mfr_sku":"FP251003","pattern_name":"Sinularia","color_name":"Feu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP251003-sinularia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/efe51df2-4597-4c12-937c-40c46a0d842a/GSD60hQqEvSgYcBHBGuU_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"H: 69 cm - 27,00 inch | V: 46 cm - 18,11 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"69 cm / 27,16 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 69 cm - 27,00 inch | V: 46 cm - 18,11 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Sinularia","description":"Printed wallpapers, Sinularia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/efe51df2-4597-4c12-937c-40c46a0d842a/GSD60hQqEvSgYcBHBGuU.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/efe51df2-4597-4c12-937c-40c46a0d842a/GSD60hQqEvSgYcBHBGuU.webp","https://static.pierrefrey.com/uploads/product/packshots/5a830ed8-06a9-409c-832d-3cd07bf28cbb/vNiUdoW9zSU7ZGJ2N0dp.webp","https://static.pierrefrey.com/uploads/product/packshots/6bafd666-96e7-47a0-8768-3774242273ca/gBUaab21AxGPn0KyPdIx.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/7570a421-dcbf-4856-848e-15526e79516d/4w13EQ8oMaeil15tYgqZ.webp","https://static.pierrefrey.com/uploads/product/packshots/d7e757bf-ad81-4489-9917-cda719a8aac1/wi4y9r6pPi02B4mmLen9.webp","https://static.pierrefrey.com/uploads/product/packshots/b5ba6cf1-53d8-4738-8450-3499f511b696/vD2DtNrKG8GFwR6I4djN.webp","https://static.pierrefrey.com/uploads/product/packshots/f26d27fe-0969-4b80-b967-7bb6252dedcd/ljDqfNyz6EkoG9ZeRkWd.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/efe51df2-4597-4c12-937c-40c46a0d842a/sth7YgKRXrVco4sS7uez.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/efe51df2-4597-4c12-937c-40c46a0d842a/GSD60hQqEvSgYcBHBGuU.webp,https://static.pierrefrey.com/uploads/product/packshots/5a830ed8-06a9-409c-832d-3cd07bf28cbb/vNiUdoW9zSU7ZGJ2N0dp.webp,https://static.pierrefrey.com/uploads/product/packshots/6bafd666-96e7-47a0-8768-3774242273ca/gBUaab21AxGPn0KyPdIx.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/7570a421-dcbf-4856-848e-15526e79516d/4w13EQ8oMaeil15tYgqZ.webp,https://static.pierrefrey.com/uploads/product/packshots/d7e757bf-ad81-4489-9917-cda719a8aac1/wi4y9r6pPi02B4mmLen9.webp,https://static.pierrefrey.com/uploads/product/packshots/b5ba6cf1-53d8-4738-8450-3499f511b696/vD2DtNrKG8GFwR6I4djN.webp,https://static.pierrefrey.com/uploads/product/packshots/f26d27fe-0969-4b80-b967-7bb6252dedcd/ljDqfNyz6EkoG9ZeRkWd.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/efe51df2-4597-4c12-937c-40c46a0d842a/sth7YgKRXrVco4sS7uez.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/efe51df2-4597-4c12-937c-40c46a0d842a/sth7YgKRXrVco4sS7uez.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:52.540Z"}
+{"mfr_sku":"FP266002","pattern_name":"Fleurs de pommiers","color_name":"Fp266002","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP266002-fleurs-de-pommiers","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Noëmie Vallerand","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","Weight":"150 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fleurs de pommiers","description":"Wide width printed wallpapers, Fleurs de pommiers. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/f05b607e-68fe-4aee-a773-63f57fec9c91/kw6I7DexPzriidViHDyb.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/f05b607e-68fe-4aee-a773-63f57fec9c91/kw6I7DexPzriidViHDyb.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/f05b607e-68fe-4aee-a773-63f57fec9c91/kw6I7DexPzriidViHDyb.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:53.279Z"}
+{"mfr_sku":"FP255001","pattern_name":"Savane","color_name":"Dune","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP255001-savane","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f41980c1-d602-473f-85e8-8c9216a6f736/veiRWr0X2enjeBfXk64C_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Embossed patterns","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 106 cm - 41,73 inch | Offset repeat 1/3","Weight":"500 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"3D printing"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 106 cm - 41,73 inch | Offset repeat 1/3","weight":"500 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Savane","description":"Small width printed wallpapers - Vinyls - Embossed patterns, Savane. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f41980c1-d602-473f-85e8-8c9216a6f736/veiRWr0X2enjeBfXk64C.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f41980c1-d602-473f-85e8-8c9216a6f736/veiRWr0X2enjeBfXk64C.webp","https://static.pierrefrey.com/uploads/product/packshots/f437ccb1-6e81-4712-b95d-f26d503b8a77/UrQDRIflYtZ8aAOPBhRk.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/f41980c1-d602-473f-85e8-8c9216a6f736/0dBbgfL3znv4yhE17kVL.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f41980c1-d602-473f-85e8-8c9216a6f736/veiRWr0X2enjeBfXk64C.webp,https://static.pierrefrey.com/uploads/product/packshots/f437ccb1-6e81-4712-b95d-f26d503b8a77/UrQDRIflYtZ8aAOPBhRk.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/f41980c1-d602-473f-85e8-8c9216a6f736/0dBbgfL3znv4yhE17kVL.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/f41980c1-d602-473f-85e8-8c9216a6f736/0dBbgfL3znv4yhE17kVL.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:54.051Z"}
+{"mfr_sku":"FP255002","pattern_name":"Savane","color_name":"Jungle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP255002-savane","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f437ccb1-6e81-4712-b95d-f26d503b8a77/UrQDRIflYtZ8aAOPBhRk_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Embossed patterns","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 106 cm - 41,73 inch | Offset repeat 1/3","Weight":"500 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"3D printing"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 106 cm - 41,73 inch | Offset repeat 1/3","weight":"500 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Savane","description":"Small width printed wallpapers - Vinyls - Embossed patterns, Savane. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f437ccb1-6e81-4712-b95d-f26d503b8a77/UrQDRIflYtZ8aAOPBhRk.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f437ccb1-6e81-4712-b95d-f26d503b8a77/UrQDRIflYtZ8aAOPBhRk.webp","https://static.pierrefrey.com/uploads/product/packshots/f41980c1-d602-473f-85e8-8c9216a6f736/veiRWr0X2enjeBfXk64C.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/f437ccb1-6e81-4712-b95d-f26d503b8a77/1YihtipS8eZgQj0kfhhS.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f437ccb1-6e81-4712-b95d-f26d503b8a77/UrQDRIflYtZ8aAOPBhRk.webp,https://static.pierrefrey.com/uploads/product/packshots/f41980c1-d602-473f-85e8-8c9216a6f736/veiRWr0X2enjeBfXk64C.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/f437ccb1-6e81-4712-b95d-f26d503b8a77/1YihtipS8eZgQj0kfhhS.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/f437ccb1-6e81-4712-b95d-f26d503b8a77/1YihtipS8eZgQj0kfhhS.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:54.682Z"}
+{"mfr_sku":"FP268001","pattern_name":"Les grenades","color_name":"Ocre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP268001-les-grenades","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fe1b7fe6-a8a5-4fdd-a61a-48be47e69034/pxVIIzHNvp5qkPWUFEmT_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Jute","Width":"115 cm / 45,27 inch","Repeat":"H: 57 cm - 22,00 inch | V: 58 cm - 22,83 inch | Straight repeat","Weight":"470 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"115 cm / 45,27 inch","composition":"100 % Jute","material":"NON WOVEN","pattern_repeat":"H: 57 cm - 22,00 inch | V: 58 cm - 22,83 inch | Straight repeat","weight":"470 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les grenades","description":"Wide width printed wallpapers - Paperbacked fabrics, Les grenades. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fe1b7fe6-a8a5-4fdd-a61a-48be47e69034/pxVIIzHNvp5qkPWUFEmT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fe1b7fe6-a8a5-4fdd-a61a-48be47e69034/pxVIIzHNvp5qkPWUFEmT.webp","https://static.pierrefrey.com/uploads/product/packshots/3e305259-f236-4a38-bc96-127c6c0a51a3/n9zfy1hcfEjcuXs0qUYp.webp","https://static.pierrefrey.com/uploads/product/packshots/4116d6b7-efb7-4c83-b9fb-99bbc02fbed5/jKsf9z49VL5I1yKrMzfh.webp","https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp","https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp","https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp","https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp","https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp","https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp","https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp","https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp","https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp","https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp","https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp","https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp","https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp","https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp","https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp","https://static.pierrefrey.com/uploads/product/packshots/685c5cd1-a924-41b1-9f03-56af20fb0d37/tC7Z4IXMDrrTKN8o1263.webp","https://static.pierrefrey.com/uploads/product/packshots/d84a7061-d840-460c-bd2e-1a42dac56532/Au4lXdwYclmpvewzdWYb.webp","https://static.pierrefrey.com/uploads/product/packshots/cad4443a-ece5-4710-97d3-6e5de25f6076/7NALd1bEt1liXIDn19Zk.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/fe1b7fe6-a8a5-4fdd-a61a-48be47e69034/MaLRq5Jon7FV6M8jKxUy.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fe1b7fe6-a8a5-4fdd-a61a-48be47e69034/pxVIIzHNvp5qkPWUFEmT.webp,https://static.pierrefrey.com/uploads/product/packshots/3e305259-f236-4a38-bc96-127c6c0a51a3/n9zfy1hcfEjcuXs0qUYp.webp,https://static.pierrefrey.com/uploads/product/packshots/4116d6b7-efb7-4c83-b9fb-99bbc02fbed5/jKsf9z49VL5I1yKrMzfh.webp,https://static.pierrefrey.com/uploads/product/packshots/d1dadc71-01f4-42d9-8a91-af44a68b39d5/hLnTAchEhqSlfdyK5YWh.webp,https://static.pierrefrey.com/uploads/product/packshots/20dbc2d9-781a-4a93-aec7-09ba75ecc294/7kCtR9rEjuJdI58tmD4m.webp,https://static.pierrefrey.com/uploads/product/packshots/988b21f6-2887-4268-85d7-6595c889f15e/Ylf9y7iijphLxV3kt5FK.webp,https://static.pierrefrey.com/uploads/product/packshots/b9a5c110-caf9-41f9-81b4-ddc6e15758c4/lm83DVZAMPRG22hvpVWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d33dca44-b075-412a-9c4d-ffc1e8c594d1/VVnIfJ7xacpIVDTKtxX5.webp,https://static.pierrefrey.com/uploads/product/packshots/c4169223-3498-46fe-919d-59557dbac620/1rmpN9VLlBvyBHZNwzsr.webp,https://static.pierrefrey.com/uploads/product/packshots/07078bc3-88d6-4b5d-80fb-30cf60c425ad/BkFisLJHCW5vaJjf8NmA.webp,https://static.pierrefrey.com/uploads/product/packshots/001398fb-eeb1-4ec3-b1c2-5969c9784f8c/NAGbRe6dtRmOWCJe68Kv.webp,https://static.pierrefrey.com/uploads/product/packshots/14df556f-dac7-49bc-9f65-ee5038d2204e/r8QdS09rGPhGBiirR9ca.webp,https://static.pierrefrey.com/uploads/product/packshots/ed9ab1fb-ac31-4220-86d4-b43aec207bbe/ZqcGUa6TrbqW9Cwlo10k.webp,https://static.pierrefrey.com/uploads/product/packshots/e1d3bd4e-9661-441f-8418-26cc8aa4a11e/AfTqgzplnFikAb4aM8GB.webp,https://static.pierrefrey.com/uploads/product/packshots/d2395560-47bb-4b63-a41b-77e33e50173a/QWyJrvZPi3FdMw6PT3nM.webp,https://static.pierrefrey.com/uploads/product/packshots/f05b607e-68fe-4aee-a773-63f57fec9c91/jOf8KYVRoAYRFMknYYLy.webp,https://static.pierrefrey.com/uploads/product/packshots/e17601d7-664b-47fc-acb9-db82adfa07ef/gF8UE9gHhbOgngKhCvzn.webp,https://static.pierrefrey.com/uploads/product/packshots/2aa47e79-9dbc-4be8-b766-4c5f90a237a1/YqoMovVYARwDCoJT7HxV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fb5425c-b014-4235-bb89-797821ecd516/R7BrSzIQnDMAikM0KMxw.webp,https://static.pierrefrey.com/uploads/product/packshots/07313313-a1c5-49a7-a321-e285fde0ab23/aqZ9L6D0CLt8843GMh0B.webp,https://static.pierrefrey.com/uploads/product/packshots/685c5cd1-a924-41b1-9f03-56af20fb0d37/tC7Z4IXMDrrTKN8o1263.webp,https://static.pierrefrey.com/uploads/product/packshots/d84a7061-d840-460c-bd2e-1a42dac56532/Au4lXdwYclmpvewzdWYb.webp,https://static.pierrefrey.com/uploads/product/packshots/cad4443a-ece5-4710-97d3-6e5de25f6076/7NALd1bEt1liXIDn19Zk.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/fe1b7fe6-a8a5-4fdd-a61a-48be47e69034/MaLRq5Jon7FV6M8jKxUy.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/fe1b7fe6-a8a5-4fdd-a61a-48be47e69034/MaLRq5Jon7FV6M8jKxUy.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:55.482Z"}
+{"mfr_sku":"FP253001","pattern_name":"Les pivoines","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP253001-les-pivoines","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Isabelle De Borchgrave","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 113 cm - 44,48 inch | Straight repeat","Weight":"110 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 113 cm - 44,48 inch | Straight repeat","weight":"110 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les pivoines","description":"Wide width printed wallpapers, Les pivoines. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp","https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp","https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp","https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp","https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp","https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp","https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp","https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp","https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp","https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp","https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp","https://static.pierrefrey.com/uploads/product/packshots/a0d9f308-3a62-4688-b68a-3b6fc7f61d30/J60ayhOozwzQFN1EF1T8.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/ARkZmDja91u5vhNRT6ge.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/2HpVhonVxCalIEmguMKC.webp,https://static.pierrefrey.com/uploads/product/packshots/93dc5f59-8871-40f1-8b1b-9c52893cffc7/GbLkfFnrXayRf0Yf1VYc.webp,https://static.pierrefrey.com/uploads/product/packshots/17c40f40-51b7-418e-bb34-b480eb0c8ed2/3ON66wFd8L5AYrqdCvio.webp,https://static.pierrefrey.com/uploads/product/packshots/d598f3b2-c498-4604-91d8-6d821bf4c030/X3SyEaZvTQm8hLj421ts.webp,https://static.pierrefrey.com/uploads/product/packshots/9a64f689-da0d-4d75-a442-3a391814965a/bBJJ2R429SxOAGG5cK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/ae4f8cdd-a118-4552-a349-9c6b472deb1a/d58yig4VPhzcBQAZPx6N.webp,https://static.pierrefrey.com/uploads/product/packshots/524b8a7c-4ec7-4031-a497-e7948fcfb903/awuyfjSKusjQNA4zg8gW.webp,https://static.pierrefrey.com/uploads/product/packshots/6083e003-ffb8-40ec-9d6d-a8c8e75743ac/zJScJSJC0ZtrRAv2N0bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8dda40f4-4528-4d65-8d63-393b052375c3/ZVL6D7ouEtx6BrwceHWq.webp,https://static.pierrefrey.com/uploads/product/packshots/5b691db3-2cdc-46e6-afa9-6fa2fb3dd042/AdkFdps5Cbz0DjjqMeYe.webp,https://static.pierrefrey.com/uploads/product/packshots/d0e477f7-2c16-4ac8-9b8c-663af2ea5de0/kCfxu4vQEdmQgCCPTRpD.webp,https://static.pierrefrey.com/uploads/product/packshots/96e5f179-f281-44b0-bb8d-75a0284fedaa/vUxZIq1X8XvRu34AA0Ol.webp,https://static.pierrefrey.com/uploads/product/packshots/73d9daf3-ae95-4ea5-881e-3d2666363429/cZAVoHidQxU6PztkohWA.webp,https://static.pierrefrey.com/uploads/product/packshots/a0d9f308-3a62-4688-b68a-3b6fc7f61d30/J60ayhOozwzQFN1EF1T8.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/ARkZmDja91u5vhNRT6ge.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/4f3dfd44-ed1e-4fbe-b708-bb76e6a26adb/ARkZmDja91u5vhNRT6ge.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:04:56.182Z"}
+{"mfr_sku":"FP225001","pattern_name":"Les feuillages","color_name":"Boreal","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP225001-les-feuillages","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 121 cm - 47,63 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 121 cm - 47,63 inch | Half drop repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les feuillages","description":"Wide width printed wallpapers, Les feuillages. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/3c350580-2e5b-43e5-b62f-ef4751ed4abb/DpMwqObX6KY19fFaorGs.webp","https://static.pierrefrey.com/uploads/product/packshots/bec5d0d5-8572-45f5-8c86-a08410991c96/2NR0sziWGeJoiuIm4E15.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/3c350580-2e5b-43e5-b62f-ef4751ed4abb/DpMwqObX6KY19fFaorGs.webp,https://static.pierrefrey.com/uploads/product/packshots/bec5d0d5-8572-45f5-8c86-a08410991c96/2NR0sziWGeJoiuIm4E15.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:04:56.931Z"}
+{"mfr_sku":"FP219002","pattern_name":"Boiserie","color_name":"Grege","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP219002-boiserie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Raphaël Schmitt","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 167 cm - 65,74 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 167 cm - 65,74 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Boiserie","description":"Wide width printed wallpapers, Boiserie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:04:57.669Z"}
+{"mfr_sku":"FP226004","pattern_name":"Neva","color_name":"Argile","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP226004-neva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"138 cm / 54,33 inch","Repeat":"H: 70 cm - 27,00 inch | V: 72 cm - 28,34 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed"},"width":"138 cm / 54,33 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 72 cm - 28,34 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Neva","description":"Wide width printed wallpapers, Neva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:04:58.372Z"}
+{"mfr_sku":"FP226002","pattern_name":"Neva","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP226002-neva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"138 cm / 54,33 inch","Repeat":"H: 70 cm - 27,00 inch | V: 72 cm - 28,34 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed"},"width":"138 cm / 54,33 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 72 cm - 28,34 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Neva","description":"Wide width printed wallpapers, Neva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:04:59.187Z"}
+{"mfr_sku":"FP245001","pattern_name":"Les cabosses","color_name":"Blond","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP245001-les-cabosses","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"87 cm / 34,25 inch","Repeat":"H: 58 cm - 22,00 inch | V: 30 cm - 11,81 inch | Straight repeat","Weight":"200 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A"},"width":"87 cm / 34,25 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 58 cm - 22,00 inch | V: 30 cm - 11,81 inch | Straight repeat","weight":"200 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les cabosses","description":"Printed wallpapers, Les cabosses. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:04:59.898Z"}
+{"mfr_sku":"FP208001","pattern_name":"Before spring","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP208001-before-spring","list_image":"https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe_335x251_webp.webp","specs":{"Type":"Embossed patterns - Straws and similar materials - Embroideries","Artist":"Jean-Charles De Castelbajac","Sales Unit":"Available per roll of  7,20 mts","Backing":"PAPER","Composition":"43 % Sisa - 39 % Acrylic - 18 % Cotton","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"470 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Dry strippable","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting"},"width":"86 cm / 33,85 inch","composition":"43 % Sisa - 39 % Acrylic - 18 % Cotton","material":"PAPER","pattern_repeat":"H: 86 cm - 33,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"470 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Before spring","description":"Embossed patterns - Straws and similar materials - Embroideries, Before spring. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp","https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp","https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp","https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp","https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp","https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp,https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp,https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp,https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp,https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp,https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:00.615Z"}
+{"mfr_sku":"FP219005","pattern_name":"Boiserie","color_name":"Bouleau","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP219005-boiserie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Raphaël Schmitt","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 167 cm - 65,74 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 167 cm - 65,74 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Boiserie","description":"Wide width printed wallpapers, Boiserie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:02.141Z"}
+{"mfr_sku":"FP219004","pattern_name":"Boiserie","color_name":"Lichen","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP219004-boiserie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Raphaël Schmitt","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 167 cm - 65,74 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 167 cm - 65,74 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Boiserie","description":"Wide width printed wallpapers, Boiserie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:03.896Z"}
+{"mfr_sku":"FP219001","pattern_name":"Boiserie","color_name":"Corde","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP219001-boiserie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Raphaël Schmitt","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 167 cm - 65,74 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 167 cm - 65,74 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Boiserie","description":"Wide width printed wallpapers, Boiserie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:05.144Z"}
+{"mfr_sku":"FP227001","pattern_name":"Mora","color_name":"Denim","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP227001-mora","list_image":"https://static.pierrefrey.com/uploads/product/packshots/27f37ad2-f226-4a05-ade5-fc0e8fb9fc23/TqlBrIPAumKVwrneXsjx_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 33 cm - 12,00 inch | V: 33 cm - 12,99 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 33 cm - 12,00 inch | V: 33 cm - 12,99 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mora","description":"Wide width printed wallpapers, Mora. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/27f37ad2-f226-4a05-ade5-fc0e8fb9fc23/TqlBrIPAumKVwrneXsjx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/27f37ad2-f226-4a05-ade5-fc0e8fb9fc23/TqlBrIPAumKVwrneXsjx.webp","https://static.pierrefrey.com/uploads/product/packshots/65362340-0554-47fc-ac26-c6df7844cc1e/f1WaLe4K5GgLDYwZZ7LR.webp","https://static.pierrefrey.com/uploads/product/packshots/a85296f6-01e3-4358-899b-91fc0702ea0a/vrpYCVxlZn1c8IATpzvq.webp","https://static.pierrefrey.com/uploads/product/packshots/87802ed3-14e9-4bbe-8720-ddfb3598ba69/mpNzjjr2pGs6VpApDF3v.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/27f37ad2-f226-4a05-ade5-fc0e8fb9fc23/TqlBrIPAumKVwrneXsjx.webp,https://static.pierrefrey.com/uploads/product/packshots/65362340-0554-47fc-ac26-c6df7844cc1e/f1WaLe4K5GgLDYwZZ7LR.webp,https://static.pierrefrey.com/uploads/product/packshots/a85296f6-01e3-4358-899b-91fc0702ea0a/vrpYCVxlZn1c8IATpzvq.webp,https://static.pierrefrey.com/uploads/product/packshots/87802ed3-14e9-4bbe-8720-ddfb3598ba69/mpNzjjr2pGs6VpApDF3v.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:06.161Z"}
+{"mfr_sku":"FP203001","pattern_name":"Le chemin des etoiles","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP203001-le-chemin-des-etoiles","list_image":"https://static.pierrefrey.com/uploads/product/packshots/29a510c4-b02c-44b1-a5ee-81238c2b074a/z9gGOuPnZh8S9Fp3826y_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Jean-Charles De Castelbajac","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 182 cm - 71,65 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 182 cm - 71,65 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le chemin des etoiles","description":"Wide width printed wallpapers, Le chemin des etoiles. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/29a510c4-b02c-44b1-a5ee-81238c2b074a/z9gGOuPnZh8S9Fp3826y.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/29a510c4-b02c-44b1-a5ee-81238c2b074a/z9gGOuPnZh8S9Fp3826y.webp","https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp","https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp","https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp","https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp","https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp","https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp","https://static.pierrefrey.com/uploads/product/packshots/8c42bb0a-ec54-4649-8c91-403d5be84feb/JR8XrRg7JkcJWgsvgz1C.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/29a510c4-b02c-44b1-a5ee-81238c2b074a/z9gGOuPnZh8S9Fp3826y.webp,https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp,https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp,https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp,https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp,https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp,https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp,https://static.pierrefrey.com/uploads/product/packshots/8c42bb0a-ec54-4649-8c91-403d5be84feb/JR8XrRg7JkcJWgsvgz1C.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:06.843Z"}
+{"mfr_sku":"FP216001","pattern_name":"Gustaf","color_name":"Boreal","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP216001-gustaf","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2d6b878e-c698-4510-ba91-f9ca7d1d3afd/42csJ48AKjshE1i8NlTk_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"70 % Cotton - 30 % Polyester","Width":"143 cm / 56,29 inch","Repeat":"H: 47 cm - 18,00 inch | V: 21 cm - 8,26 inch | Straight repeat","Weight":"390 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect"},"width":"143 cm / 56,29 inch","composition":"70 % Cotton - 30 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 47 cm - 18,00 inch | V: 21 cm - 8,26 inch | Straight repeat","weight":"390 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Gustaf","description":"Wide width printed wallpapers - Paperbacked fabrics, Gustaf. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2d6b878e-c698-4510-ba91-f9ca7d1d3afd/42csJ48AKjshE1i8NlTk.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2d6b878e-c698-4510-ba91-f9ca7d1d3afd/42csJ48AKjshE1i8NlTk.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/0fbbe1c6-1000-4f29-8151-6b8fe7b99303/GR4QMJ0Nd3wrSwnWat36.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2d6b878e-c698-4510-ba91-f9ca7d1d3afd/42csJ48AKjshE1i8NlTk.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/0fbbe1c6-1000-4f29-8151-6b8fe7b99303/GR4QMJ0Nd3wrSwnWat36.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:07.702Z"}
+{"mfr_sku":"FP224001","pattern_name":"Quilt","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP224001-quilt","list_image":"https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 143 cm - 56,29 inch | Half drop repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 143 cm - 56,29 inch | Half drop repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Quilt","description":"Wide width printed wallpapers, Quilt. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/a0619736-8c24-4757-aee8-2dec6cedf74a/NqKwI2lqOjcEiF2M5oGU.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/a0619736-8c24-4757-aee8-2dec6cedf74a/NqKwI2lqOjcEiF2M5oGU.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:08.544Z"}
+{"mfr_sku":"FP232001","pattern_name":"Olivia","color_name":"Ble","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP232001-olivia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/31542c37-1a67-46c5-b3cd-5f443ef5f914/3bXN403yS3iCBdJNhSgJ_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"130 cm / 51,18 inch","Repeat":"H: 65 cm - 25,00 inch | V: 157 cm - 61,81 inch | Straight repeat","Weight":"300 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Raised pattern","Information":"Panel effect"},"width":"130 cm / 51,18 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 65 cm - 25,00 inch | V: 157 cm - 61,81 inch | Straight repeat","weight":"300 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Olivia","description":"Wide width printed wallpapers, Olivia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/31542c37-1a67-46c5-b3cd-5f443ef5f914/3bXN403yS3iCBdJNhSgJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/31542c37-1a67-46c5-b3cd-5f443ef5f914/3bXN403yS3iCBdJNhSgJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/31542c37-1a67-46c5-b3cd-5f443ef5f914/3bXN403yS3iCBdJNhSgJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:09.349Z"}
+{"mfr_sku":"FP241001","pattern_name":"La vallee des dragons","color_name":"Ble","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP241001-la-vallee-des-dragons","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl_335x251_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 43 cm - 16,00 inch | V: 62 cm - 24,40 inch | Straight repeat","Weight":"370 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 43 cm - 16,00 inch | V: 62 cm - 24,40 inch | Straight repeat","weight":"370 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La vallee des dragons","description":"Straws and similar materials - Printed wallpapers, La vallee des dragons. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","https://static.pierrefrey.com/uploads/product/packshots/250c0cde-ef8f-46b8-9fa7-8b65d0cfb1a2/tKLFc3Db4I24JzIJ1Ggr.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/3a679cf8-7e4d-48b0-b603-461ee464e8bb/D7Fk8KNRV0phWEYcYGov.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp,https://static.pierrefrey.com/uploads/product/packshots/250c0cde-ef8f-46b8-9fa7-8b65d0cfb1a2/tKLFc3Db4I24JzIJ1Ggr.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/3a679cf8-7e4d-48b0-b603-461ee464e8bb/D7Fk8KNRV0phWEYcYGov.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/3a679cf8-7e4d-48b0-b603-461ee464e8bb/D7Fk8KNRV0phWEYcYGov.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:05:10.167Z"}
+{"mfr_sku":"FP217002","pattern_name":"Rosa","color_name":"Grisaille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP217002-rosa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3c56ef40-037d-4aff-8b1e-47628d6b7025/dUcqCJSEsd1xDm3Ayjzp_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 29 cm - 11,41 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 29 cm - 11,41 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Rosa","description":"Small width printed wallpapers, Rosa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3c56ef40-037d-4aff-8b1e-47628d6b7025/dUcqCJSEsd1xDm3Ayjzp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3c56ef40-037d-4aff-8b1e-47628d6b7025/dUcqCJSEsd1xDm3Ayjzp.webp","https://static.pierrefrey.com/uploads/product/packshots/97b36bb4-e5bf-4836-8885-d3969c59fd8d/GYXdzFgCYqynctb0bY6a.webp","https://static.pierrefrey.com/uploads/product/packshots/79c54429-e302-4b80-ad06-a1614a0de49e/HmMniwNxiuXM3OBYGT1v.webp","https://static.pierrefrey.com/uploads/product/packshots/7ca68b50-28a9-49d3-9ddc-89fe94a8ba92/tRiaAHvRQEyNhlRIfV7f.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3c56ef40-037d-4aff-8b1e-47628d6b7025/dUcqCJSEsd1xDm3Ayjzp.webp,https://static.pierrefrey.com/uploads/product/packshots/97b36bb4-e5bf-4836-8885-d3969c59fd8d/GYXdzFgCYqynctb0bY6a.webp,https://static.pierrefrey.com/uploads/product/packshots/79c54429-e302-4b80-ad06-a1614a0de49e/HmMniwNxiuXM3OBYGT1v.webp,https://static.pierrefrey.com/uploads/product/packshots/7ca68b50-28a9-49d3-9ddc-89fe94a8ba92/tRiaAHvRQEyNhlRIfV7f.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:11.029Z"}
+{"mfr_sku":"FP211001","pattern_name":"Fleurs de givre","color_name":"Azur","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP211001-fleurs-de-givre","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn_335x251_webp.webp","specs":{"Type":"Embossed patterns - Straws and similar materials - Embroideries","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"37 % Silk - 33 % Viscose - 30 % Polyester","Width":"130 cm / 51,18 inch","Repeat":"H: 87 cm - 34,00 inch | V: 40 cm - 15,74 inch | Half drop repeat","Weight":"590 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Dry strippable","Notes":"Raised pattern","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting"},"width":"130 cm / 51,18 inch","composition":"37 % Silk - 33 % Viscose - 30 % Polyester","material":"PAPER","pattern_repeat":"H: 87 cm - 34,00 inch | V: 40 cm - 15,74 inch | Half drop repeat","weight":"590 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fleurs de givre","description":"Embossed patterns - Straws and similar materials - Embroideries, Fleurs de givre. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:11.806Z"}
+{"mfr_sku":"FP636003","pattern_name":"Le jardin du palais","color_name":"Ivoire","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP636003-le-jardin-du-palais","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3e987e23-20b0-476a-b8ff-9421d4f245f5/hdD2cK4R1LCAQX0Ez8bP_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"94 cm / 37,00 inch","Repeat":"H: 94 cm - 37,00 inch | V: 93 cm - 36,61 inch | Half drop repeat","Weight":"195 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"94 cm / 37,00 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 94 cm - 37,00 inch | V: 93 cm - 36,61 inch | Half drop repeat","weight":"195 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le jardin du palais","description":"Wide width printed wallpapers, Le jardin du palais. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3e987e23-20b0-476a-b8ff-9421d4f245f5/hdD2cK4R1LCAQX0Ez8bP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3e987e23-20b0-476a-b8ff-9421d4f245f5/hdD2cK4R1LCAQX0Ez8bP.webp","https://static.pierrefrey.com/uploads/product/packshots/923e805b-e9b9-490b-8c68-29b5509fa518/jVjKSUjKlB9HdCMdss6S.webp","https://static.pierrefrey.com/uploads/product/packshots/661d30fe-f671-4498-8597-0902be59a25b/k9NEsc8aNQf97vckadNr.webp","https://static.pierrefrey.com/uploads/product/packshots/7372e397-a80f-4db6-a92e-6a9214748e02/sMpt40w6dZWtg4gqBiFG.webp","https://static.pierrefrey.com/uploads/product/packshots/a5705ed4-6f64-4815-b7e3-6abf5900eb20/N5j9HGebY96MMxvxKQiD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3e987e23-20b0-476a-b8ff-9421d4f245f5/hdD2cK4R1LCAQX0Ez8bP.webp,https://static.pierrefrey.com/uploads/product/packshots/923e805b-e9b9-490b-8c68-29b5509fa518/jVjKSUjKlB9HdCMdss6S.webp,https://static.pierrefrey.com/uploads/product/packshots/661d30fe-f671-4498-8597-0902be59a25b/k9NEsc8aNQf97vckadNr.webp,https://static.pierrefrey.com/uploads/product/packshots/7372e397-a80f-4db6-a92e-6a9214748e02/sMpt40w6dZWtg4gqBiFG.webp,https://static.pierrefrey.com/uploads/product/packshots/a5705ed4-6f64-4815-b7e3-6abf5900eb20/N5j9HGebY96MMxvxKQiD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:12.454Z"}
+{"mfr_sku":"FP212001","pattern_name":"Fleurs de lumiere","color_name":"Lagon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP212001-fleurs-de-lumiere","list_image":"https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv_251x335_webp.webp","specs":{"Type":"Embossed patterns - Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"PAPER","Composition":"70 % Paper - 30 % Acrylic","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"635 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Dry strippable","Notes":"Raised pattern","Information":"Embroidered wallcovering.Irregular appearance due to handcrafting"},"width":"87 cm / 34,25 inch","composition":"70 % Paper - 30 % Acrylic","material":"PAPER","pattern_repeat":"H: 87 cm - 34,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"635 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Fleurs de lumiere","description":"Embossed patterns - Straws and similar materials - Embroideries, Fleurs de lumiere. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:13.200Z"}
+{"mfr_sku":"FP006004","pattern_name":"Les anemones","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP006004-les-anemones","list_image":"https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Artist":"Rachael Cocker","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 24 cm - 9,44 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 24 cm - 9,44 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les anemones","description":"Printed wallpapers, Les anemones. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:13.972Z"}
+{"mfr_sku":"FP231001","pattern_name":"Emil","color_name":"Vanille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP231001-emil","list_image":"https://static.pierrefrey.com/uploads/product/packshots/499c2c19-2849-4b4d-a62e-f270a30c0e25/djbwtI3gmQSfDoBEps4e_335x251_webp.webp","specs":{"Type":"Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"PAPER","Composition":"40 % Viscose - 39 % Jute - 16 % Cotton - 3 % Polyamide - 2 % Polyester","Width":"86 cm / 33,85 inch","Repeat":"H: 29 cm - 11,00 inch | V: 20 cm - 7,87 inch | Straight repeat","Weight":"685 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Dry strippable","Notes":"Raised pattern","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting"},"width":"86 cm / 33,85 inch","composition":"40 % Viscose - 39 % Jute - 16 % Cotton - 3 % Polyamide - 2 % Polyester","material":"PAPER","pattern_repeat":"H: 29 cm - 11,00 inch | V: 20 cm - 7,87 inch | Straight repeat","weight":"685 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Emil","description":"Straws and similar materials - Embroideries, Emil. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/499c2c19-2849-4b4d-a62e-f270a30c0e25/djbwtI3gmQSfDoBEps4e.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/499c2c19-2849-4b4d-a62e-f270a30c0e25/djbwtI3gmQSfDoBEps4e.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/499c2c19-2849-4b4d-a62e-f270a30c0e25/djbwtI3gmQSfDoBEps4e.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:14.701Z"}
+{"mfr_sku":"FP230001","pattern_name":"Primadonna","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP230001-primadonna","list_image":"https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 135 cm - 53,14 inch | Straight repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable"},"width":"87 cm / 34,25 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 135 cm - 53,14 inch | Straight repeat","weight":"240 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Primadonna","description":"Straws and similar materials - Printed wallpapers, Primadonna. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/85250d78-4c27-4ea1-89a4-1f78d6fbfc38/MQQPe6qSCseGD2N1Dg6s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/85250d78-4c27-4ea1-89a4-1f78d6fbfc38/MQQPe6qSCseGD2N1Dg6s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:15.571Z"}
+{"mfr_sku":"FP207001","pattern_name":"Birds traffic","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP207001-birds-traffic","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Artist":"Jean-Charles De Castelbajac","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 61 cm - 24,01 inch | Straight repeat","Weight":"255 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 61 cm - 24,01 inch | Straight repeat","weight":"255 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Birds traffic","description":"Straws and similar materials - Printed wallpapers, Birds traffic. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp","https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp","https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp","https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp","https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp","https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp,https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp,https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp,https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp,https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp,https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:16.206Z"}
+{"mfr_sku":"FP205002","pattern_name":"Le monde parall'aile","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP205002-le-monde-parallaile","list_image":"https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Jean-Charles De Castelbajac","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 200 cm - 78,74 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 200 cm - 78,74 inch | Half drop repeat","weight":"165 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le monde parall'aile","description":"Wide width printed wallpapers, Le monde parall'aile. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp","https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp","https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp","https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp","https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp","https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp","https://static.pierrefrey.com/uploads/product/packshots/6dbe1274-577a-4201-8390-14b341fd5a10/ic6ZpzEIEWi2rosrwIdq.webp","https://static.pierrefrey.com/uploads/product/packshots/f565bcb2-bb00-4b11-831f-1a143bcfc9ba/h2lwVjvjDC6R2dL19gR9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp,https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp,https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp,https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp,https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp,https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp,https://static.pierrefrey.com/uploads/product/packshots/6dbe1274-577a-4201-8390-14b341fd5a10/ic6ZpzEIEWi2rosrwIdq.webp,https://static.pierrefrey.com/uploads/product/packshots/f565bcb2-bb00-4b11-831f-1a143bcfc9ba/h2lwVjvjDC6R2dL19gR9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:16.840Z"}
+{"mfr_sku":"FP226006","pattern_name":"Neva","color_name":"Ficelle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP226006-neva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"138 cm / 54,33 inch","Repeat":"H: 70 cm - 27,00 inch | V: 72 cm - 28,34 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed"},"width":"138 cm / 54,33 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 72 cm - 28,34 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Neva","description":"Wide width printed wallpapers, Neva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:17.598Z"}
+{"mfr_sku":"FP228001","pattern_name":"Pre d'ete","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP228001-pre-dete-nacre","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5d35b785-1e5a-48d4-a81b-b5efbb75ac48/cmX95H5PYaSY96w9wY5A_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 81 cm - 31,88 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 81 cm - 31,88 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Pre d'ete","description":"Wide width printed wallpapers, Pre d'ete. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5d35b785-1e5a-48d4-a81b-b5efbb75ac48/cmX95H5PYaSY96w9wY5A.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5d35b785-1e5a-48d4-a81b-b5efbb75ac48/cmX95H5PYaSY96w9wY5A.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5d35b785-1e5a-48d4-a81b-b5efbb75ac48/cmX95H5PYaSY96w9wY5A.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:18.399Z"}
+{"mfr_sku":"FP222001","pattern_name":"Pre d'ete nacre","color_name":"Glacier","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP222001-pre-dete","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5fdd4a02-62c6-4ad0-94ee-361e627ff528/GZKYsuvUsrlbPkFbws0y_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 81 cm - 31,88 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 81 cm - 31,88 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Pre d'ete nacre","description":"Wide width printed wallpapers, Pre d'ete nacre. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5fdd4a02-62c6-4ad0-94ee-361e627ff528/GZKYsuvUsrlbPkFbws0y.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5fdd4a02-62c6-4ad0-94ee-361e627ff528/GZKYsuvUsrlbPkFbws0y.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5fdd4a02-62c6-4ad0-94ee-361e627ff528/GZKYsuvUsrlbPkFbws0y.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:19.191Z"}
+{"mfr_sku":"FP202001","pattern_name":"Le voyage eternel","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP202001-le-voyage-eternel","list_image":"https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Jean-Charles De Castelbajac","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 96 cm - 37,79 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 96 cm - 37,79 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le voyage eternel","description":"Wide width printed wallpapers, Le voyage eternel. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp","https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp","https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp","https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp","https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp","https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp,https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp,https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp,https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp,https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp,https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:19.949Z"}
+{"mfr_sku":"FP227002","pattern_name":"Mora","color_name":"Rouge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP227002-mora","list_image":"https://static.pierrefrey.com/uploads/product/packshots/65362340-0554-47fc-ac26-c6df7844cc1e/f1WaLe4K5GgLDYwZZ7LR_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 33 cm - 12,00 inch | V: 33 cm - 12,99 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 33 cm - 12,00 inch | V: 33 cm - 12,99 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mora","description":"Wide width printed wallpapers, Mora. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/65362340-0554-47fc-ac26-c6df7844cc1e/f1WaLe4K5GgLDYwZZ7LR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/65362340-0554-47fc-ac26-c6df7844cc1e/f1WaLe4K5GgLDYwZZ7LR.webp","https://static.pierrefrey.com/uploads/product/packshots/27f37ad2-f226-4a05-ade5-fc0e8fb9fc23/TqlBrIPAumKVwrneXsjx.webp","https://static.pierrefrey.com/uploads/product/packshots/a85296f6-01e3-4358-899b-91fc0702ea0a/vrpYCVxlZn1c8IATpzvq.webp","https://static.pierrefrey.com/uploads/product/packshots/87802ed3-14e9-4bbe-8720-ddfb3598ba69/mpNzjjr2pGs6VpApDF3v.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/65362340-0554-47fc-ac26-c6df7844cc1e/f1WaLe4K5GgLDYwZZ7LR.webp,https://static.pierrefrey.com/uploads/product/packshots/27f37ad2-f226-4a05-ade5-fc0e8fb9fc23/TqlBrIPAumKVwrneXsjx.webp,https://static.pierrefrey.com/uploads/product/packshots/a85296f6-01e3-4358-899b-91fc0702ea0a/vrpYCVxlZn1c8IATpzvq.webp,https://static.pierrefrey.com/uploads/product/packshots/87802ed3-14e9-4bbe-8720-ddfb3598ba69/mpNzjjr2pGs6VpApDF3v.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:20.760Z"}
+{"mfr_sku":"FP240002","pattern_name":"Baltique","color_name":"Chardon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP240002-savane","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 33 cm - 12,00 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 33 cm - 12,00 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Baltique","description":"Wide width printed wallpapers, Baltique. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:21.663Z"}
+{"mfr_sku":"FP240003","pattern_name":"Baltique","color_name":"Bleuet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP240003-savane","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 33 cm - 12,00 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 33 cm - 12,00 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Baltique","description":"Wide width printed wallpapers, Baltique. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:22.393Z"}
+{"mfr_sku":"FP069005","pattern_name":"Ceylan","color_name":"The","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP069005-ceylan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 48 cm - 18,89 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 48 cm - 18,89 inch | Half drop repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Ceylan","description":"Small width printed wallpapers - Printed wallpapers, Ceylan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:23.183Z"}
+{"mfr_sku":"FP220001","pattern_name":"Bjorn","color_name":"Citron","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP220001-bjorn","list_image":"https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 62 cm - 24,40 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 62 cm - 24,40 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bjorn","description":"Wide width printed wallpapers, Bjorn. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/ee297753-4c88-4b52-8604-6d1f73d1ee1e/vDuhOkYw9iFjW2KvT45Q.webp","https://static.pierrefrey.com/uploads/product/packshots/3a31aec9-1d8e-4294-826e-7c5aec1356f8/NrV4WyzrO6YgfDrzhSRU.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/ee297753-4c88-4b52-8604-6d1f73d1ee1e/vDuhOkYw9iFjW2KvT45Q.webp,https://static.pierrefrey.com/uploads/product/packshots/3a31aec9-1d8e-4294-826e-7c5aec1356f8/NrV4WyzrO6YgfDrzhSRU.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:24.058Z"}
+{"mfr_sku":"FP473003","pattern_name":"Yangzi","color_name":"Avoine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP473003-yangzi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"50 % Sisa - 50 % Polyester","Width":"87 cm / 34,25 inch","Repeat":"H: 44 cm - 17,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"297 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness"},"width":"87 cm / 34,25 inch","composition":"50 % Sisa - 50 % Polyester","material":"PAPER","pattern_repeat":"H: 44 cm - 17,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"297 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Yangzi","description":"Small width printed wallpapers - Straws and similar materials, Yangzi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp","https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp","https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp","https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp","https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp,https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp,https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp,https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp,https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:24.773Z"}
+{"mfr_sku":"FP217003","pattern_name":"Rosa","color_name":"Lagon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP217003-rosa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/79c54429-e302-4b80-ad06-a1614a0de49e/HmMniwNxiuXM3OBYGT1v_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 29 cm - 11,41 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 29 cm - 11,41 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Rosa","description":"Small width printed wallpapers, Rosa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/79c54429-e302-4b80-ad06-a1614a0de49e/HmMniwNxiuXM3OBYGT1v.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/79c54429-e302-4b80-ad06-a1614a0de49e/HmMniwNxiuXM3OBYGT1v.webp","https://static.pierrefrey.com/uploads/product/packshots/97b36bb4-e5bf-4836-8885-d3969c59fd8d/GYXdzFgCYqynctb0bY6a.webp","https://static.pierrefrey.com/uploads/product/packshots/3c56ef40-037d-4aff-8b1e-47628d6b7025/dUcqCJSEsd1xDm3Ayjzp.webp","https://static.pierrefrey.com/uploads/product/packshots/7ca68b50-28a9-49d3-9ddc-89fe94a8ba92/tRiaAHvRQEyNhlRIfV7f.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/79c54429-e302-4b80-ad06-a1614a0de49e/HmMniwNxiuXM3OBYGT1v.webp,https://static.pierrefrey.com/uploads/product/packshots/97b36bb4-e5bf-4836-8885-d3969c59fd8d/GYXdzFgCYqynctb0bY6a.webp,https://static.pierrefrey.com/uploads/product/packshots/3c56ef40-037d-4aff-8b1e-47628d6b7025/dUcqCJSEsd1xDm3Ayjzp.webp,https://static.pierrefrey.com/uploads/product/packshots/7ca68b50-28a9-49d3-9ddc-89fe94a8ba92/tRiaAHvRQEyNhlRIfV7f.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:25.732Z"}
+{"mfr_sku":"FP206001","pattern_name":"Crossroads","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP206001-crossroads","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7a16a537-d351-454a-85c0-23942493d3be/0Il2cSlyGrEBlYVbjVan_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Artist":"Jean-Charles De Castelbajac","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable"},"width":"86 cm / 33,85 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 86 cm - 33,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"240 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Crossroads","description":"Straws and similar materials - Printed wallpapers, Crossroads. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7a16a537-d351-454a-85c0-23942493d3be/0Il2cSlyGrEBlYVbjVan.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7a16a537-d351-454a-85c0-23942493d3be/0Il2cSlyGrEBlYVbjVan.webp","https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp","https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp","https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp","https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp","https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp","https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp","https://static.pierrefrey.com/uploads/product/packshots/13595b13-f490-4fb6-8010-dc9865874aed/eErB2a4Ol7sRMiKvMA3g.webp","https://static.pierrefrey.com/uploads/product/packshots/2083d480-4f77-4081-91c5-3c39539e2e34/w5BiESO2TcNkmcJsSUO8.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7a16a537-d351-454a-85c0-23942493d3be/0Il2cSlyGrEBlYVbjVan.webp,https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp,https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp,https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp,https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp,https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp,https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp,https://static.pierrefrey.com/uploads/product/packshots/13595b13-f490-4fb6-8010-dc9865874aed/eErB2a4Ol7sRMiKvMA3g.webp,https://static.pierrefrey.com/uploads/product/packshots/2083d480-4f77-4081-91c5-3c39539e2e34/w5BiESO2TcNkmcJsSUO8.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:26.480Z"}
+{"mfr_sku":"FP236001","pattern_name":"Cote d'opale","color_name":"Blond","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP236001-cote-dopale","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 82 cm - 32,28 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 82 cm - 32,28 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cote d'opale","description":"Wide width printed wallpapers, Cote d'opale. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:27.106Z"}
+{"mfr_sku":"FP218001","pattern_name":"Decor scandinave","color_name":"Lichen","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP218001-decor-scandinave","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Raphaël Schmitt","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 169 cm - 66,53 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 169 cm - 66,53 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Decor scandinave","description":"Wide width printed wallpapers, Decor scandinave. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:27.880Z"}
+{"mfr_sku":"FP217004","pattern_name":"Rosa","color_name":"Abricot","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP217004-rosa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7ca68b50-28a9-49d3-9ddc-89fe94a8ba92/tRiaAHvRQEyNhlRIfV7f_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 29 cm - 11,41 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 29 cm - 11,41 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Rosa","description":"Small width printed wallpapers, Rosa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7ca68b50-28a9-49d3-9ddc-89fe94a8ba92/tRiaAHvRQEyNhlRIfV7f.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7ca68b50-28a9-49d3-9ddc-89fe94a8ba92/tRiaAHvRQEyNhlRIfV7f.webp","https://static.pierrefrey.com/uploads/product/packshots/97b36bb4-e5bf-4836-8885-d3969c59fd8d/GYXdzFgCYqynctb0bY6a.webp","https://static.pierrefrey.com/uploads/product/packshots/3c56ef40-037d-4aff-8b1e-47628d6b7025/dUcqCJSEsd1xDm3Ayjzp.webp","https://static.pierrefrey.com/uploads/product/packshots/79c54429-e302-4b80-ad06-a1614a0de49e/HmMniwNxiuXM3OBYGT1v.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7ca68b50-28a9-49d3-9ddc-89fe94a8ba92/tRiaAHvRQEyNhlRIfV7f.webp,https://static.pierrefrey.com/uploads/product/packshots/97b36bb4-e5bf-4836-8885-d3969c59fd8d/GYXdzFgCYqynctb0bY6a.webp,https://static.pierrefrey.com/uploads/product/packshots/3c56ef40-037d-4aff-8b1e-47628d6b7025/dUcqCJSEsd1xDm3Ayjzp.webp,https://static.pierrefrey.com/uploads/product/packshots/79c54429-e302-4b80-ad06-a1614a0de49e/HmMniwNxiuXM3OBYGT1v.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:28.589Z"}
+{"mfr_sku":"FP247001","pattern_name":"La girafe du carrousel","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP247001-la-girafe-du-carrousel","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7e52654c-aadd-470c-9150-52352eb30486/cNPWcnhnME8tZyXc8Gu5_251x335_webp.webp","specs":{"Type":"Panoramic wallpapers - Printed wallpapers","Collaboration":"Maison Caspari","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"-","Width":"70 cm / 27,55 inch","Repeat":"H: 140 cm - 55,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Sold as a complete artwork","Information":"1 roll = 2 panels"},"width":"70 cm / 27,55 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per panel","roll_length":null,"collection":"La girafe du carrousel","description":"Panoramic wallpapers - Printed wallpapers, La girafe du carrousel. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7e52654c-aadd-470c-9150-52352eb30486/cNPWcnhnME8tZyXc8Gu5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7e52654c-aadd-470c-9150-52352eb30486/cNPWcnhnME8tZyXc8Gu5.webp","https://static.pierrefrey.com/uploads/product/packshots/0ce44a11-e545-4f4c-bad6-4a9bca671347/Vap5Ys3ZANL2VPAf4Yu6.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7e52654c-aadd-470c-9150-52352eb30486/cNPWcnhnME8tZyXc8Gu5.webp,https://static.pierrefrey.com/uploads/product/packshots/0ce44a11-e545-4f4c-bad6-4a9bca671347/Vap5Ys3ZANL2VPAf4Yu6.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:29.301Z"}
+{"mfr_sku":"FP242001","pattern_name":"Les sablons","color_name":"Galet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP242001-les-sablons","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Half drop repeat","Weight":"410 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Half drop repeat","weight":"410 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les sablons","description":"Vinyls - Printed wallpapers, Les sablons. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:30.074Z"}
+{"mfr_sku":"FP495004","pattern_name":"Happy monkey","color_name":"Argile","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP495004-happy-monkey","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 130 cm - 51,18 inch | Offset repeat 1/4","Weight":"295 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 130 cm - 51,18 inch | Offset repeat 1/4","weight":"295 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Happy monkey","description":"Straws and similar materials - Printed wallpapers, Happy monkey. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:30.851Z"}
+{"mfr_sku":"FP226001","pattern_name":"Neva","color_name":"Petale","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP226001-neva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"138 cm / 54,33 inch","Repeat":"H: 70 cm - 27,00 inch | V: 72 cm - 28,34 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed"},"width":"138 cm / 54,33 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 72 cm - 28,34 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Neva","description":"Wide width printed wallpapers, Neva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:31.606Z"}
+{"mfr_sku":"FP235001","pattern_name":"Arbres et sous bois","color_name":"Bouleau","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP235001-arbres-et-sous-bois","list_image":"https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Jean-Luc Favéro","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 111 cm - 43,70 inch | Offset repeat 1/3","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 111 cm - 43,70 inch | Offset repeat 1/3","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Arbres et sous bois","description":"Wide width printed wallpapers, Arbres et sous bois. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:32.312Z"}
+{"mfr_sku":"FP565005","pattern_name":"Tampa","color_name":"Brume","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP565005-tampa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"460 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tampa","description":"Small width printed wallpapers - Vinyls, Tampa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp","https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp","https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp","https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp","https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp","https://static.pierrefrey.com/uploads/product/packshots/df9f729e-3459-481e-9ff4-33eb57a2bbaf/TtWUkFZPTdKTpWIvHoQY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp,https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp,https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp,https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp,https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp,https://static.pierrefrey.com/uploads/product/packshots/df9f729e-3459-481e-9ff4-33eb57a2bbaf/TtWUkFZPTdKTpWIvHoQY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:32.938Z"}
+{"mfr_sku":"FP786006","pattern_name":"Arlesienne","color_name":"Porcelaine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP786006-arlesienne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Arlesienne","description":"Small width printed wallpapers, Arlesienne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","https://static.pierrefrey.com/uploads/product/packshots/ec27716e-f91a-4215-b600-85e7b4961402/Pxz49wGzCTfN9gJzQccH.webp","https://static.pierrefrey.com/uploads/product/packshots/065100da-5ea5-4f01-9af4-e6a8e1397bfb/bCdgUaNskRc73diUe722.webp","https://static.pierrefrey.com/uploads/product/packshots/fe3cff35-bc90-4537-ba7f-6a379a84b390/icokPHHV8Lvq79JJc1wo.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp,https://static.pierrefrey.com/uploads/product/packshots/ec27716e-f91a-4215-b600-85e7b4961402/Pxz49wGzCTfN9gJzQccH.webp,https://static.pierrefrey.com/uploads/product/packshots/065100da-5ea5-4f01-9af4-e6a8e1397bfb/bCdgUaNskRc73diUe722.webp,https://static.pierrefrey.com/uploads/product/packshots/fe3cff35-bc90-4537-ba7f-6a379a84b390/icokPHHV8Lvq79JJc1wo.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:33.801Z"}
+{"mfr_sku":"FP433002","pattern_name":"Masai mara","color_name":"Oasis","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP433002-masai-mara","list_image":"https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY9"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Masai mara","description":"Wide width printed wallpapers, Masai mara. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp","https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp","https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp","https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp","https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp","https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp","https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp","https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp","https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp,https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp,https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp,https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp,https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp,https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp,https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp,https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp,https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:34.521Z"}
+{"mfr_sku":"FP227004","pattern_name":"Mora","color_name":"Kaki","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP227004-mora","list_image":"https://static.pierrefrey.com/uploads/product/packshots/87802ed3-14e9-4bbe-8720-ddfb3598ba69/mpNzjjr2pGs6VpApDF3v_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 33 cm - 12,00 inch | V: 33 cm - 12,99 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 33 cm - 12,00 inch | V: 33 cm - 12,99 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mora","description":"Wide width printed wallpapers, Mora. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/87802ed3-14e9-4bbe-8720-ddfb3598ba69/mpNzjjr2pGs6VpApDF3v.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/87802ed3-14e9-4bbe-8720-ddfb3598ba69/mpNzjjr2pGs6VpApDF3v.webp","https://static.pierrefrey.com/uploads/product/packshots/27f37ad2-f226-4a05-ade5-fc0e8fb9fc23/TqlBrIPAumKVwrneXsjx.webp","https://static.pierrefrey.com/uploads/product/packshots/65362340-0554-47fc-ac26-c6df7844cc1e/f1WaLe4K5GgLDYwZZ7LR.webp","https://static.pierrefrey.com/uploads/product/packshots/a85296f6-01e3-4358-899b-91fc0702ea0a/vrpYCVxlZn1c8IATpzvq.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/87802ed3-14e9-4bbe-8720-ddfb3598ba69/mpNzjjr2pGs6VpApDF3v.webp,https://static.pierrefrey.com/uploads/product/packshots/27f37ad2-f226-4a05-ade5-fc0e8fb9fc23/TqlBrIPAumKVwrneXsjx.webp,https://static.pierrefrey.com/uploads/product/packshots/65362340-0554-47fc-ac26-c6df7844cc1e/f1WaLe4K5GgLDYwZZ7LR.webp,https://static.pierrefrey.com/uploads/product/packshots/a85296f6-01e3-4358-899b-91fc0702ea0a/vrpYCVxlZn1c8IATpzvq.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:35.483Z"}
+{"mfr_sku":"FP234001","pattern_name":"Mitake","color_name":"Fp234001","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP234001-mitake","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 161 cm - 63,38 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 161 cm - 63,38 inch | Half drop repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mitake","description":"Wide width printed wallpapers, Mitake. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:36.249Z"}
+{"mfr_sku":"FP787005","pattern_name":"Fleurs de corail","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP787005-fleurs-de-corail","list_image":"https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 22 cm - 8,66 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 22 cm - 8,66 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Fleurs de corail","description":"Small width printed wallpapers, Fleurs de corail. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:36.942Z"}
+{"mfr_sku":"FP217001","pattern_name":"Rosa","color_name":"Fruits Rouges","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP217001-rosa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/97b36bb4-e5bf-4836-8885-d3969c59fd8d/GYXdzFgCYqynctb0bY6a_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 29 cm - 11,41 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 29 cm - 11,41 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Rosa","description":"Small width printed wallpapers, Rosa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/97b36bb4-e5bf-4836-8885-d3969c59fd8d/GYXdzFgCYqynctb0bY6a.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/97b36bb4-e5bf-4836-8885-d3969c59fd8d/GYXdzFgCYqynctb0bY6a.webp","https://static.pierrefrey.com/uploads/product/packshots/3c56ef40-037d-4aff-8b1e-47628d6b7025/dUcqCJSEsd1xDm3Ayjzp.webp","https://static.pierrefrey.com/uploads/product/packshots/79c54429-e302-4b80-ad06-a1614a0de49e/HmMniwNxiuXM3OBYGT1v.webp","https://static.pierrefrey.com/uploads/product/packshots/7ca68b50-28a9-49d3-9ddc-89fe94a8ba92/tRiaAHvRQEyNhlRIfV7f.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/97b36bb4-e5bf-4836-8885-d3969c59fd8d/GYXdzFgCYqynctb0bY6a.webp,https://static.pierrefrey.com/uploads/product/packshots/3c56ef40-037d-4aff-8b1e-47628d6b7025/dUcqCJSEsd1xDm3Ayjzp.webp,https://static.pierrefrey.com/uploads/product/packshots/79c54429-e302-4b80-ad06-a1614a0de49e/HmMniwNxiuXM3OBYGT1v.webp,https://static.pierrefrey.com/uploads/product/packshots/7ca68b50-28a9-49d3-9ddc-89fe94a8ba92/tRiaAHvRQEyNhlRIfV7f.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:37.739Z"}
+{"mfr_sku":"FP054004","pattern_name":"Au palais petit","color_name":"Chantilly","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP054004-au-palais","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 98 cm - 38,00 inch | V: 123 cm - 48,42 inch | Straight repeat","Weight":"420 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 98 cm - 38,00 inch | V: 123 cm - 48,42 inch | Straight repeat","weight":"420 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Au palais petit","description":"Vinyls - Printed wallpapers, Au palais petit. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:38.618Z"}
+{"mfr_sku":"FP310005","pattern_name":"Jardin de mysore","color_name":"Nuage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP310005-jardin-de-mysore","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 91 cm - 35,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 91 cm - 35,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Jardin de mysore","description":"Wide width printed wallpapers, Jardin de mysore. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp","https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp","https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp","https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp","https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp","https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp","https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp","https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp","https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp","https://static.pierrefrey.com/uploads/product/packshots/8139ab87-b1eb-44d3-b50a-45085c812e6d/yrvjK1egPJjYZBeyZ3Ql.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp,https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp,https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp,https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp,https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp,https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp,https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp,https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp,https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp,https://static.pierrefrey.com/uploads/product/packshots/8139ab87-b1eb-44d3-b50a-45085c812e6d/yrvjK1egPJjYZBeyZ3Ql.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:39.353Z"}
+{"mfr_sku":"FP239001","pattern_name":"Kiwis","color_name":"Fp239001","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP239001-kiwis","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Corks","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Cork","Width":"84 cm / 33,07 inch","Repeat":"H: 84 cm - 33,00 inch | V: 85 cm - 33,46 inch | Straight repeat","Weight":"245 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable"},"width":"84 cm / 33,07 inch","composition":"100 % Cork","material":"NON WOVEN","pattern_repeat":"H: 84 cm - 33,00 inch | V: 85 cm - 33,46 inch | Straight repeat","weight":"245 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Kiwis","description":"Small width printed wallpapers - Corks, Kiwis. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:40.116Z"}
+{"mfr_sku":"FP205001","pattern_name":"Le monde parall'aile","color_name":"Or","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP205001-le-monde-parallaile","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Jean-Charles De Castelbajac","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 200 cm - 78,74 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 200 cm - 78,74 inch | Half drop repeat","weight":"165 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le monde parall'aile","description":"Wide width printed wallpapers, Le monde parall'aile. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp","https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp","https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp","https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp","https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp","https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp","https://static.pierrefrey.com/uploads/product/packshots/6dbe1274-577a-4201-8390-14b341fd5a10/ic6ZpzEIEWi2rosrwIdq.webp","https://static.pierrefrey.com/uploads/product/packshots/f565bcb2-bb00-4b11-831f-1a143bcfc9ba/h2lwVjvjDC6R2dL19gR9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp,https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp,https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp,https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp,https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp,https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp,https://static.pierrefrey.com/uploads/product/packshots/6dbe1274-577a-4201-8390-14b341fd5a10/ic6ZpzEIEWi2rosrwIdq.webp,https://static.pierrefrey.com/uploads/product/packshots/f565bcb2-bb00-4b11-831f-1a143bcfc9ba/h2lwVjvjDC6R2dL19gR9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:40.792Z"}
+{"mfr_sku":"FP233001","pattern_name":"Arty nacre","color_name":"Lait D'Amande","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP233001-arty-nacre","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Marie-Cécile Aptel","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 91 cm - 35,82 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 91 cm - 35,82 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Arty nacre","description":"Wide width printed wallpapers, Arty nacre. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:41.578Z"}
+{"mfr_sku":"FP227003","pattern_name":"Mora","color_name":"Fusain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP227003-mora","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a85296f6-01e3-4358-899b-91fc0702ea0a/vrpYCVxlZn1c8IATpzvq_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 33 cm - 12,00 inch | V: 33 cm - 12,99 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 33 cm - 12,00 inch | V: 33 cm - 12,99 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mora","description":"Wide width printed wallpapers, Mora. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a85296f6-01e3-4358-899b-91fc0702ea0a/vrpYCVxlZn1c8IATpzvq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a85296f6-01e3-4358-899b-91fc0702ea0a/vrpYCVxlZn1c8IATpzvq.webp","https://static.pierrefrey.com/uploads/product/packshots/27f37ad2-f226-4a05-ade5-fc0e8fb9fc23/TqlBrIPAumKVwrneXsjx.webp","https://static.pierrefrey.com/uploads/product/packshots/65362340-0554-47fc-ac26-c6df7844cc1e/f1WaLe4K5GgLDYwZZ7LR.webp","https://static.pierrefrey.com/uploads/product/packshots/87802ed3-14e9-4bbe-8720-ddfb3598ba69/mpNzjjr2pGs6VpApDF3v.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a85296f6-01e3-4358-899b-91fc0702ea0a/vrpYCVxlZn1c8IATpzvq.webp,https://static.pierrefrey.com/uploads/product/packshots/27f37ad2-f226-4a05-ade5-fc0e8fb9fc23/TqlBrIPAumKVwrneXsjx.webp,https://static.pierrefrey.com/uploads/product/packshots/65362340-0554-47fc-ac26-c6df7844cc1e/f1WaLe4K5GgLDYwZZ7LR.webp,https://static.pierrefrey.com/uploads/product/packshots/87802ed3-14e9-4bbe-8720-ddfb3598ba69/mpNzjjr2pGs6VpApDF3v.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:42.468Z"}
+{"mfr_sku":"FP772005","pattern_name":"Biot","color_name":"Mineral","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP772005-biot","list_image":"https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Biot","description":"Small width printed wallpapers, Biot. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:43.424Z"}
+{"mfr_sku":"FP223001","pattern_name":"Dalecarlie","color_name":"Azur","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP223001-dalecarlie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/af20d98f-bbd3-449a-8bc1-a6a396c6b986/b4BjCg0EWrCbwq9bP63r_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 89 cm - 35,03 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 89 cm - 35,03 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Dalecarlie","description":"Wide width printed wallpapers, Dalecarlie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/af20d98f-bbd3-449a-8bc1-a6a396c6b986/b4BjCg0EWrCbwq9bP63r.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/af20d98f-bbd3-449a-8bc1-a6a396c6b986/b4BjCg0EWrCbwq9bP63r.webp","https://static.pierrefrey.com/uploads/product/packshots/f5d6aebe-8672-484a-ad19-75b6b2efc18f/HFyyXOnvaKYi135Ciawo.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/af20d98f-bbd3-449a-8bc1-a6a396c6b986/b4BjCg0EWrCbwq9bP63r.webp,https://static.pierrefrey.com/uploads/product/packshots/f5d6aebe-8672-484a-ad19-75b6b2efc18f/HFyyXOnvaKYi135Ciawo.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:44.093Z"}
+{"mfr_sku":"FP204001","pattern_name":"Game of love","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP204001-game-of-love","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Jean-Charles De Castelbajac","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 78 cm - 30,70 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 78 cm - 30,70 inch | Half drop repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Game of love","description":"Wide width printed wallpapers, Game of love. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp","https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp","https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp","https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp","https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp","https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb99b0e-8bb1-4d33-a632-00ccb81dbe0e/t7nrl4xUCrzXniWSOzVX.webp","https://static.pierrefrey.com/uploads/product/packshots/55ff32c1-ded9-40ce-9d56-25fcfd7b4b6b/hjWMymuHO3Ugvl81Lt3C.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b0f2dc37-34c8-4965-83cd-4cc3fe9ab948/nBRZZk5iELOfdQxllV75.webp,https://static.pierrefrey.com/uploads/product/packshots/58b37912-a4cc-47b9-a605-d526429ee41c/1AVNmCaF8O6va4pgYcRp.webp,https://static.pierrefrey.com/uploads/product/packshots/148a8063-13ec-4a85-a14d-4472aabf9a8e/LlwAyoWsEnNlm1fOvOGe.webp,https://static.pierrefrey.com/uploads/product/packshots/61699f80-4c5a-450b-b31d-b82343c39635/YvPiRJtFQ1FdywOy7Nwe.webp,https://static.pierrefrey.com/uploads/product/packshots/5455fbbf-650d-46dc-b7be-45835833a438/QakpIg8ANb2siC5uDRYT.webp,https://static.pierrefrey.com/uploads/product/packshots/9ced2376-6082-4703-b10e-b117ad60570c/qwCU4k1XFu9I5YLjxggZ.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb99b0e-8bb1-4d33-a632-00ccb81dbe0e/t7nrl4xUCrzXniWSOzVX.webp,https://static.pierrefrey.com/uploads/product/packshots/55ff32c1-ded9-40ce-9d56-25fcfd7b4b6b/hjWMymuHO3Ugvl81Lt3C.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:44.805Z"}
+{"mfr_sku":"FP494002","pattern_name":"Bonsai","color_name":"Lait D'Amande","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP494002-bonsai","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 75 cm - 29,52 inch | Half drop repeat","Weight":"295 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 75 cm - 29,52 inch | Half drop repeat","weight":"295 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bonsai","description":"Straws and similar materials - Printed wallpapers, Bonsai. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","https://static.pierrefrey.com/uploads/product/packshots/544ed4c3-1a6c-45ed-a4df-407d5644797c/fMSp1bMzYnxXon4I5MsQ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp,https://static.pierrefrey.com/uploads/product/packshots/544ed4c3-1a6c-45ed-a4df-407d5644797c/fMSp1bMzYnxXon4I5MsQ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:45.559Z"}
+{"mfr_sku":"FP219006","pattern_name":"Boiserie","color_name":"Petale","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP219006-boiserie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Raphaël Schmitt","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 167 cm - 65,74 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 167 cm - 65,74 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Boiserie","description":"Wide width printed wallpapers, Boiserie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:46.650Z"}
+{"mfr_sku":"FP226003","pattern_name":"Neva","color_name":"Aqua","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP226003-neva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"138 cm / 54,33 inch","Repeat":"H: 70 cm - 27,00 inch | V: 72 cm - 28,34 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed"},"width":"138 cm / 54,33 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 72 cm - 28,34 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Neva","description":"Wide width printed wallpapers, Neva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:47.368Z"}
+{"mfr_sku":"FP213001","pattern_name":"L'arbre magique","color_name":"Matin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP213001-larbre-magique","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"OSNABURG","Composition":"100 % Vinyl","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 137 cm - 53,93 inch | Straight repeat","Weight":"465 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A"},"width":"129 cm / 50,78 inch","composition":"100 % Vinyl","material":"OSNABURG","pattern_repeat":"H: 129 cm - 50,00 inch | V: 137 cm - 53,93 inch | Straight repeat","weight":"465 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"L'arbre magique","description":"Wide width printed wallpapers - Vinyls, L'arbre magique. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/7bb50f43-8a98-47ad-b70b-60a24b7a9268/vE0qUQLiaPztPK9SZsOS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/7bb50f43-8a98-47ad-b70b-60a24b7a9268/vE0qUQLiaPztPK9SZsOS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:48.149Z"}
+{"mfr_sku":"FP229001","pattern_name":"Midsommar","color_name":"Opale","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP229001-midsomar","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c119a401-9022-4605-94fd-3c3a0d6e6adb/UYS4gMWXbG2aOXhjoknl_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 44 cm - 17,00 inch | V: 60 cm - 23,62 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 44 cm - 17,00 inch | V: 60 cm - 23,62 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Midsommar","description":"Wide width printed wallpapers, Midsommar. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c119a401-9022-4605-94fd-3c3a0d6e6adb/UYS4gMWXbG2aOXhjoknl.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c119a401-9022-4605-94fd-3c3a0d6e6adb/UYS4gMWXbG2aOXhjoknl.webp","https://static.pierrefrey.com/uploads/product/packshots/db1fdd46-39d4-4855-bc53-5db0de82234c/r80jZYwsnSNK3SmwNqjl.webp","https://static.pierrefrey.com/uploads/product/packshots/f493e5fb-b64a-4040-bfae-9e05e9a32bfb/l2LTMU0Y9I5JxNEIZFtS.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/4cabc5ab-30c1-44d9-b64f-6bab720f87e1/vYSNpUfaPS2ENI2KjwaM.webp","https://static.pierrefrey.com/uploads/product/packshots/c3c45d61-6e15-41ab-abde-dbffe32f9244/sqAh78Hd5X9MuyS7SINg.webp","https://static.pierrefrey.com/uploads/product/packshots/46033ac2-2af1-4a67-8ab7-7e8fc2fd1e2c/E9XFjE0KERaWhJ1HU0Ht.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c119a401-9022-4605-94fd-3c3a0d6e6adb/UYS4gMWXbG2aOXhjoknl.webp,https://static.pierrefrey.com/uploads/product/packshots/db1fdd46-39d4-4855-bc53-5db0de82234c/r80jZYwsnSNK3SmwNqjl.webp,https://static.pierrefrey.com/uploads/product/packshots/f493e5fb-b64a-4040-bfae-9e05e9a32bfb/l2LTMU0Y9I5JxNEIZFtS.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/4cabc5ab-30c1-44d9-b64f-6bab720f87e1/vYSNpUfaPS2ENI2KjwaM.webp,https://static.pierrefrey.com/uploads/product/packshots/c3c45d61-6e15-41ab-abde-dbffe32f9244/sqAh78Hd5X9MuyS7SINg.webp,https://static.pierrefrey.com/uploads/product/packshots/46033ac2-2af1-4a67-8ab7-7e8fc2fd1e2c/E9XFjE0KERaWhJ1HU0Ht.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:48.923Z"}
+{"mfr_sku":"FP770005","pattern_name":"Les singes savants","color_name":"Porcelaine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP770005-les-singes-savants","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Artist":"Dessin Harrison Howard","Collaboration":"Maison Caspari","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"97 cm / 38,18 inch","Repeat":"H: 97 cm - 38,00 inch | V: 135 cm - 53,14 inch | Half drop repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness"},"width":"97 cm / 38,18 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 97 cm - 38,00 inch | V: 135 cm - 53,14 inch | Half drop repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les singes savants","description":"Wide width printed wallpapers - Vinyls, Les singes savants. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp","https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp","https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp","https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp","https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp","https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp","https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp","https://static.pierrefrey.com/uploads/product/packshots/290613ee-c487-42cd-a779-f43e5385d2fa/Veb3mjD7YLOQB90VzC0r.webp","https://static.pierrefrey.com/uploads/product/packshots/bff841c5-6af3-47eb-b7a2-477d14250ee1/4rwLR1Hw3Xrnwf8k0ZXa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp,https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp,https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp,https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp,https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp,https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp,https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp,https://static.pierrefrey.com/uploads/product/packshots/290613ee-c487-42cd-a779-f43e5385d2fa/Veb3mjD7YLOQB90VzC0r.webp,https://static.pierrefrey.com/uploads/product/packshots/bff841c5-6af3-47eb-b7a2-477d14250ee1/4rwLR1Hw3Xrnwf8k0ZXa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:49.515Z"}
+{"mfr_sku":"FP481004","pattern_name":"Magellan","color_name":"Nuage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP481004-magellan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 170 cm - 66,92 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 170 cm - 66,92 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Magellan","description":"Wide width printed wallpapers, Magellan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:50.278Z"}
+{"mfr_sku":"FP220002","pattern_name":"Bjorn","color_name":"Cerise","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP220002-bjorn","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 62 cm - 24,40 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 62 cm - 24,40 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bjorn","description":"Wide width printed wallpapers, Bjorn. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/ee297753-4c88-4b52-8604-6d1f73d1ee1e/vDuhOkYw9iFjW2KvT45Q.webp","https://static.pierrefrey.com/uploads/product/packshots/3a31aec9-1d8e-4294-826e-7c5aec1356f8/NrV4WyzrO6YgfDrzhSRU.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/ee297753-4c88-4b52-8604-6d1f73d1ee1e/vDuhOkYw9iFjW2KvT45Q.webp,https://static.pierrefrey.com/uploads/product/packshots/3a31aec9-1d8e-4294-826e-7c5aec1356f8/NrV4WyzrO6YgfDrzhSRU.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:51.021Z"}
+{"mfr_sku":"FP238001","pattern_name":"Le repos du toucan","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP238001-le-repos-du-toucan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 126 cm - 49,60 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 126 cm - 49,60 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le repos du toucan","description":"Wide width printed wallpapers, Le repos du toucan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:51.707Z"}
+{"mfr_sku":"FP237001","pattern_name":"Cahuita","color_name":"Corde","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP237001-cahuita","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 85 cm - 33,46 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 85 cm - 33,46 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cahuita","description":"Wide width printed wallpapers, Cahuita. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:52.441Z"}
+{"mfr_sku":"FP229002","pattern_name":"Midsommar","color_name":"Lagon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP229002-midsomar","list_image":"https://static.pierrefrey.com/uploads/product/packshots/db1fdd46-39d4-4855-bc53-5db0de82234c/r80jZYwsnSNK3SmwNqjl_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 44 cm - 17,00 inch | V: 60 cm - 23,62 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 44 cm - 17,00 inch | V: 60 cm - 23,62 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Midsommar","description":"Wide width printed wallpapers, Midsommar. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/db1fdd46-39d4-4855-bc53-5db0de82234c/r80jZYwsnSNK3SmwNqjl.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/db1fdd46-39d4-4855-bc53-5db0de82234c/r80jZYwsnSNK3SmwNqjl.webp","https://static.pierrefrey.com/uploads/product/packshots/c119a401-9022-4605-94fd-3c3a0d6e6adb/UYS4gMWXbG2aOXhjoknl.webp","https://static.pierrefrey.com/uploads/product/packshots/f493e5fb-b64a-4040-bfae-9e05e9a32bfb/l2LTMU0Y9I5JxNEIZFtS.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/4cabc5ab-30c1-44d9-b64f-6bab720f87e1/vYSNpUfaPS2ENI2KjwaM.webp","https://static.pierrefrey.com/uploads/product/packshots/c3c45d61-6e15-41ab-abde-dbffe32f9244/sqAh78Hd5X9MuyS7SINg.webp","https://static.pierrefrey.com/uploads/product/packshots/46033ac2-2af1-4a67-8ab7-7e8fc2fd1e2c/E9XFjE0KERaWhJ1HU0Ht.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/db1fdd46-39d4-4855-bc53-5db0de82234c/r80jZYwsnSNK3SmwNqjl.webp,https://static.pierrefrey.com/uploads/product/packshots/c119a401-9022-4605-94fd-3c3a0d6e6adb/UYS4gMWXbG2aOXhjoknl.webp,https://static.pierrefrey.com/uploads/product/packshots/f493e5fb-b64a-4040-bfae-9e05e9a32bfb/l2LTMU0Y9I5JxNEIZFtS.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/4cabc5ab-30c1-44d9-b64f-6bab720f87e1/vYSNpUfaPS2ENI2KjwaM.webp,https://static.pierrefrey.com/uploads/product/packshots/c3c45d61-6e15-41ab-abde-dbffe32f9244/sqAh78Hd5X9MuyS7SINg.webp,https://static.pierrefrey.com/uploads/product/packshots/46033ac2-2af1-4a67-8ab7-7e8fc2fd1e2c/E9XFjE0KERaWhJ1HU0Ht.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:53.281Z"}
+{"mfr_sku":"FP219003","pattern_name":"Boiserie","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP219003-boiserie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Raphaël Schmitt","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 167 cm - 65,74 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 167 cm - 65,74 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Boiserie","description":"Wide width printed wallpapers, Boiserie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:54.053Z"}
+{"mfr_sku":"FP226005","pattern_name":"Neva","color_name":"Citron","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP226005-neva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"138 cm / 54,33 inch","Repeat":"H: 70 cm - 27,00 inch | V: 72 cm - 28,34 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed"},"width":"138 cm / 54,33 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 72 cm - 28,34 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Neva","description":"Wide width printed wallpapers, Neva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:54.785Z"}
+{"mfr_sku":"FP246001","pattern_name":"Minihic","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP246001-minihic","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"72 % Polyester - 28 % Polyamide","Width":"139 cm / 54,72 inch","Repeat":"H: 28 cm - 11,00 inch | V: 23 cm - 9,05 inch | Straight repeat","Weight":"542 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect"},"width":"139 cm / 54,72 inch","composition":"72 % Polyester - 28 % Polyamide","material":"NON WOVEN","pattern_repeat":"H: 28 cm - 11,00 inch | V: 23 cm - 9,05 inch | Straight repeat","weight":"542 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Minihic","description":"Paperbacked fabrics - Straws and similar materials, Minihic. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/ed0962d8-48a1-4c5c-9237-238be8c3eb30/q8MLVVFNmMAXdD87J930.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/ed0962d8-48a1-4c5c-9237-238be8c3eb30/q8MLVVFNmMAXdD87J930.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/ed0962d8-48a1-4c5c-9237-238be8c3eb30/q8MLVVFNmMAXdD87J930.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:05:55.576Z"}
+{"mfr_sku":"FP229003","pattern_name":"Midsommar","color_name":"Boreal","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP229003-midsomar","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f493e5fb-b64a-4040-bfae-9e05e9a32bfb/l2LTMU0Y9I5JxNEIZFtS_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 44 cm - 17,00 inch | V: 60 cm - 23,62 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 44 cm - 17,00 inch | V: 60 cm - 23,62 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Midsommar","description":"Wide width printed wallpapers, Midsommar. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f493e5fb-b64a-4040-bfae-9e05e9a32bfb/l2LTMU0Y9I5JxNEIZFtS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f493e5fb-b64a-4040-bfae-9e05e9a32bfb/l2LTMU0Y9I5JxNEIZFtS.webp","https://static.pierrefrey.com/uploads/product/packshots/c119a401-9022-4605-94fd-3c3a0d6e6adb/UYS4gMWXbG2aOXhjoknl.webp","https://static.pierrefrey.com/uploads/product/packshots/db1fdd46-39d4-4855-bc53-5db0de82234c/r80jZYwsnSNK3SmwNqjl.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/4cabc5ab-30c1-44d9-b64f-6bab720f87e1/vYSNpUfaPS2ENI2KjwaM.webp","https://static.pierrefrey.com/uploads/product/packshots/c3c45d61-6e15-41ab-abde-dbffe32f9244/sqAh78Hd5X9MuyS7SINg.webp","https://static.pierrefrey.com/uploads/product/packshots/46033ac2-2af1-4a67-8ab7-7e8fc2fd1e2c/E9XFjE0KERaWhJ1HU0Ht.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f493e5fb-b64a-4040-bfae-9e05e9a32bfb/l2LTMU0Y9I5JxNEIZFtS.webp,https://static.pierrefrey.com/uploads/product/packshots/c119a401-9022-4605-94fd-3c3a0d6e6adb/UYS4gMWXbG2aOXhjoknl.webp,https://static.pierrefrey.com/uploads/product/packshots/db1fdd46-39d4-4855-bc53-5db0de82234c/r80jZYwsnSNK3SmwNqjl.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/4cabc5ab-30c1-44d9-b64f-6bab720f87e1/vYSNpUfaPS2ENI2KjwaM.webp,https://static.pierrefrey.com/uploads/product/packshots/c3c45d61-6e15-41ab-abde-dbffe32f9244/sqAh78Hd5X9MuyS7SINg.webp,https://static.pierrefrey.com/uploads/product/packshots/46033ac2-2af1-4a67-8ab7-7e8fc2fd1e2c/E9XFjE0KERaWhJ1HU0Ht.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:56.298Z"}
+{"mfr_sku":"FP223002","pattern_name":"Dalecarlie","color_name":"Craie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP223002-dalecarlie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f5d6aebe-8672-484a-ad19-75b6b2efc18f/HFyyXOnvaKYi135Ciawo_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 89 cm - 35,03 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 89 cm - 35,03 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Dalecarlie","description":"Wide width printed wallpapers, Dalecarlie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f5d6aebe-8672-484a-ad19-75b6b2efc18f/HFyyXOnvaKYi135Ciawo.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f5d6aebe-8672-484a-ad19-75b6b2efc18f/HFyyXOnvaKYi135Ciawo.webp","https://static.pierrefrey.com/uploads/product/packshots/af20d98f-bbd3-449a-8bc1-a6a396c6b986/b4BjCg0EWrCbwq9bP63r.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f5d6aebe-8672-484a-ad19-75b6b2efc18f/HFyyXOnvaKYi135Ciawo.webp,https://static.pierrefrey.com/uploads/product/packshots/af20d98f-bbd3-449a-8bc1-a6a396c6b986/b4BjCg0EWrCbwq9bP63r.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:57.107Z"}
+{"mfr_sku":"FP243001","pattern_name":"Les azalees","color_name":"Grege","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP243001-les-azalees","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"87 cm / 34,25 inch","Repeat":"H: 43 cm - 16,00 inch | V: 86 cm - 33,85 inch | Straight repeat","Weight":"300 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable"},"width":"87 cm / 34,25 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 43 cm - 16,00 inch | V: 86 cm - 33,85 inch | Straight repeat","weight":"300 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les azalees","description":"Straws and similar materials - Printed wallpapers, Les azalees. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:57.860Z"}
+{"mfr_sku":"FP859005","pattern_name":"Valbonne","color_name":"Craie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP859005-valbonne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 53 cm - 20,86 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 53 cm - 20,86 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Valbonne","description":"Small width printed wallpapers, Valbonne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:58.737Z"}
+{"mfr_sku":"FP240001","pattern_name":"Baltique","color_name":"Groseille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP240001-savane","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 33 cm - 12,00 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 33 cm - 12,00 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Baltique","description":"Wide width printed wallpapers, Baltique. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:05:59.547Z"}
+{"mfr_sku":"FP221001","pattern_name":"Mariefred","color_name":"Boudoir","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP221001-mariefred","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 115 cm - 45,27 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 115 cm - 45,27 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mariefred","description":"Wide width printed wallpapers, Mariefred. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/dbd2be37-7480-43b6-bf7a-0aaeab011155/BcfL5sZh4Q3OnucfVPfD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/dbd2be37-7480-43b6-bf7a-0aaeab011155/BcfL5sZh4Q3OnucfVPfD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:00.441Z"}
+{"mfr_sku":"FP214001","pattern_name":"Bloomer","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP214001-blommer","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259_251x335_webp.webp","specs":{"Type":"Embossed patterns - Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"H: 90 cm - 35,00 inch | V: 87 cm - 34,25 inch | Straight repeat","Weight":"260 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 87 cm - 34,25 inch | Straight repeat","weight":"260 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bloomer","description":"Embossed patterns - Paperbacked fabrics - Printed wallpapers, Bloomer. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/313aacdc-a1f7-48fe-9c17-89fbf1266f8f/3KzXEhkJ6y3mn4y8rHoh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/313aacdc-a1f7-48fe-9c17-89fbf1266f8f/3KzXEhkJ6y3mn4y8rHoh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:01.459Z"}
+{"mfr_sku":"FP214002","pattern_name":"Bloomer","color_name":"Cumin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP214002-blommer","list_image":"https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f_251x335_webp.webp","specs":{"Type":"Embossed patterns - Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"H: 90 cm - 35,00 inch | V: 87 cm - 34,25 inch | Straight repeat","Weight":"260 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 87 cm - 34,25 inch | Straight repeat","weight":"260 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bloomer","description":"Embossed patterns - Paperbacked fabrics - Printed wallpapers, Bloomer. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","https://static.pierrefrey.com/uploads/product/packshots/313aacdc-a1f7-48fe-9c17-89fbf1266f8f/3KzXEhkJ6y3mn4y8rHoh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp,https://static.pierrefrey.com/uploads/product/packshots/313aacdc-a1f7-48fe-9c17-89fbf1266f8f/3KzXEhkJ6y3mn4y8rHoh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:02.819Z"}
+{"mfr_sku":"FP215001","pattern_name":"Nordic","color_name":"Caramel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP215001-nordic","list_image":"https://static.pierrefrey.com/uploads/product/packshots/78bd1f22-56be-420d-a7b1-4594cdded061/scQiaJnRb01w1D1Qaqd7_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"128 cm / 50,39 inch","Repeat":"H: 26 cm - 10,00 inch | Straight repeat","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A"},"width":"128 cm / 50,39 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | Straight repeat","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nordic","description":"Wide width printed wallpapers - Paperbacked fabrics, Nordic. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/78bd1f22-56be-420d-a7b1-4594cdded061/scQiaJnRb01w1D1Qaqd7.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/78bd1f22-56be-420d-a7b1-4594cdded061/scQiaJnRb01w1D1Qaqd7.webp","https://static.pierrefrey.com/uploads/product/packshots/389bf7a3-6172-4a6d-89c7-6e2b897f8c31/jyWZ14YwtoshgpWx9PxS.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/78bd1f22-56be-420d-a7b1-4594cdded061/scQiaJnRb01w1D1Qaqd7.webp,https://static.pierrefrey.com/uploads/product/packshots/389bf7a3-6172-4a6d-89c7-6e2b897f8c31/jyWZ14YwtoshgpWx9PxS.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:03.726Z"}
+{"mfr_sku":"FP215002","pattern_name":"Nordic","color_name":"Sauge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP215002-nordic","list_image":"https://static.pierrefrey.com/uploads/product/packshots/389bf7a3-6172-4a6d-89c7-6e2b897f8c31/jyWZ14YwtoshgpWx9PxS_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"128 cm / 50,39 inch","Repeat":"H: 26 cm - 10,00 inch | Straight repeat","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A"},"width":"128 cm / 50,39 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | Straight repeat","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nordic","description":"Wide width printed wallpapers - Paperbacked fabrics, Nordic. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/389bf7a3-6172-4a6d-89c7-6e2b897f8c31/jyWZ14YwtoshgpWx9PxS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/389bf7a3-6172-4a6d-89c7-6e2b897f8c31/jyWZ14YwtoshgpWx9PxS.webp","https://static.pierrefrey.com/uploads/product/packshots/78bd1f22-56be-420d-a7b1-4594cdded061/scQiaJnRb01w1D1Qaqd7.webp","https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp","https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp","https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp","https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp","https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp","https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp","https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp","https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp","https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp","https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp","https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp","https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp","https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp","https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp","https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp","https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp","https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp","https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp","https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp","https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp","https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp","https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp","https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/389bf7a3-6172-4a6d-89c7-6e2b897f8c31/jyWZ14YwtoshgpWx9PxS.webp,https://static.pierrefrey.com/uploads/product/packshots/78bd1f22-56be-420d-a7b1-4594cdded061/scQiaJnRb01w1D1Qaqd7.webp,https://static.pierrefrey.com/uploads/product/packshots/198b32dc-4597-43cc-b201-a4fa0f5161fd/xjTM21N9vSLwXT7Z5T5f.webp,https://static.pierrefrey.com/uploads/product/packshots/ae91169a-1272-45a3-8abc-7c2c43400726/x4JQ5mGmTZQ4vrZ5P259.webp,https://static.pierrefrey.com/uploads/product/packshots/7c7cb730-35cd-48f7-a1a3-dcafa0cf996f/RTHRBXCJYAy6CGGidlXZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9a2b25c-54bb-4e83-b47f-6f50fdcab05d/iPvAx8iXcndK8OW25vjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3d9e32a9-cbee-4329-8ebe-3232be5c6d06/C66uPUceWn9INfFXugQn.webp,https://static.pierrefrey.com/uploads/product/packshots/31361e5f-6980-4fdf-a326-3069c6e1fcf4/CpQTnPiyJnXduRClwpsE.webp,https://static.pierrefrey.com/uploads/product/packshots/49d53a95-a269-4373-ab20-1bdb412e2f20/UehnMIJI0Ufh0PC1VZaA.webp,https://static.pierrefrey.com/uploads/product/packshots/81a4eaa2-0bca-43a5-92fc-07a9c5506b5b/Qq3c6Dka8SPvtVkeJGi4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd26f94b-42fc-4fc7-b7b1-4cae7cb4a05f/KbP2mgytGCczMndXiW93.webp,https://static.pierrefrey.com/uploads/product/packshots/4c7ea42c-44c8-4032-b3f1-e34788263f85/Ob2eGYx3ZsGx4lqCcPYe.webp,https://static.pierrefrey.com/uploads/product/packshots/c108ab41-c5d4-421d-b95a-8a3f936d3434/xPYpJimcBzUxtdZYIAgW.webp,https://static.pierrefrey.com/uploads/product/packshots/fc91b670-269d-45e9-b988-238dd912249a/wTXM3pJbB9bjv6UD3lqv.webp,https://static.pierrefrey.com/uploads/product/packshots/43ee89f7-f707-4b0f-b0c8-0810673d9ba5/VKBMynbIFcWMYsy0p8fv.webp,https://static.pierrefrey.com/uploads/product/packshots/bd2b089c-09c0-4673-b98d-248d39127444/fCuRdKmfyTWHbgUJttH3.webp,https://static.pierrefrey.com/uploads/product/packshots/6ee579bf-22a4-4caf-a6c8-8efe7e24b02f/bi8kUJd9s7vNg6glrNV9.webp,https://static.pierrefrey.com/uploads/product/packshots/7003beee-706f-46de-b80c-5a439ccc7b11/2WMQpknfWlMEvlBiJxob.webp,https://static.pierrefrey.com/uploads/product/packshots/0b9af1d2-5937-4068-9ebc-e1dec9f592f7/WfwPrKRIti1DYir8ESyb.webp,https://static.pierrefrey.com/uploads/product/packshots/c0c83805-3fe3-467d-aba4-56e6e72918a0/WS0WBzFc7UGyg4Nd9wAE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b5d55f3-f414-49e0-81dc-29bc0b9d9680/JKAMoqThrzvWrzHAF76V.webp,https://static.pierrefrey.com/uploads/product/packshots/e95e2717-ba13-44a1-9296-1d1a9eb4152c/J82dk4jp79DrfszbwpNm.webp,https://static.pierrefrey.com/uploads/product/packshots/5942ca56-40c4-47d3-bcf7-bcb2ff4e54f1/O3ITrw5Mg9ySpvMSx6E0.webp,https://static.pierrefrey.com/uploads/product/packshots/722d1423-7023-4314-88a2-79846f13ac9e/dZ9CvA6TS9vfMnxz5VHA.webp,https://static.pierrefrey.com/uploads/product/packshots/1f8194e6-ac2f-4bb3-98b7-6cfbd7143073/xbKJLpMEyB7RYFerHASE.webp,https://static.pierrefrey.com/uploads/product/packshots/0b4416e7-e316-46e2-890b-36ba43ee5c4c/NzZWWLAsb2472cuxAjgq.webp,https://static.pierrefrey.com/uploads/product/packshots/e86b52e5-e40d-4054-be2d-fadbf1213db3/lZmW7tIwuc5LQjLZDmE4.webp,https://static.pierrefrey.com/uploads/product/packshots/1eab5b8e-a9ca-4393-bb09-52420e95c480/vYuRoSff3IIpLE5oGQuI.webp,https://static.pierrefrey.com/uploads/product/packshots/177fb051-ecc7-444e-9f08-bf6b8afd0a4f/OKA5Wj6wyhYiyIAdfOSB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:04.696Z"}
+{"mfr_sku":"FP140002","pattern_name":"Dordogne","color_name":"Soleil","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP140002-dordogne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY48"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Dordogne","description":"Straws and similar materials - Printed wallpapers, Dordogne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:05.653Z"}
+{"mfr_sku":"FP133002","pattern_name":"Benin","color_name":"Bouquet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP133002-benin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"116 cm / 45,66 inch","Repeat":"H: 23 cm - 9,00 inch","Weight":"390 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Raised pattern","Information":"Panel effect","Book":"F9979PPFREY48"},"width":"116 cm / 45,66 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 23 cm - 9,00 inch","weight":"390 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Benin","description":"Wide width printed wallpapers, Benin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:06.622Z"}
+{"mfr_sku":"FP122004","pattern_name":"Amour","color_name":"Pivoine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP122004-amour","list_image":"https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Amour","description":"Printed wallpapers, Amour. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:07.403Z"}
+{"mfr_sku":"FP126004","pattern_name":"Douro","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP126004-douro","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"88 % Polyester - 12 % Linen","Width":"90 cm / 35,43 inch","Repeat":"H: 15 cm - 5,00 inch","Weight":"580 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"90 cm / 35,43 inch","composition":"88 % Polyester - 12 % Linen","material":"NON WOVEN","pattern_repeat":"H: 15 cm - 5,00 inch","weight":"580 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Douro","description":"Wide width printed wallpapers - Paperbacked fabrics, Douro. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:08.196Z"}
+{"mfr_sku":"FP136004","pattern_name":"Tamise","color_name":"Mer","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP136004-tamise","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 17 cm - 6,00 inch","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 17 cm - 6,00 inch","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tamise","description":"Printed wallpapers, Tamise. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:09.000Z"}
+{"mfr_sku":"FP123001","pattern_name":"Seine","color_name":"Banquise","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP123001-seine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 52 cm - 20,47 inch","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 52 cm - 20,47 inch","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Seine","description":"Printed wallpapers, Seine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:09.964Z"}
+{"mfr_sku":"FP135002","pattern_name":"Escaut","color_name":"Galet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP135002-escaut","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY_251x335_webp.webp","specs":{"Type":"End-on-end threads - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"82 cm / 32,28 inch","Repeat":"H: 20 cm - 7,00 inch","Weight":"200 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"82 cm / 32,28 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 20 cm - 7,00 inch","weight":"200 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Escaut","description":"End-on-end threads - Printed wallpapers, Escaut. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:10.754Z"}
+{"mfr_sku":"FP153002","pattern_name":"Ammos","color_name":"Menthe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP153002-ammos","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0f0be919-fd74-49e1-a16f-beb1c3e2cb03/BAzT87Qfvg8rDzQ3MeWK_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 75 cm - 29,00 inch | V: 87 cm - 34,25 inch | Half drop repeat","Weight":"250 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY47"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 75 cm - 29,00 inch | V: 87 cm - 34,25 inch | Half drop repeat","weight":"250 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ammos","description":"Straws and similar materials - Printed wallpapers, Ammos. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0f0be919-fd74-49e1-a16f-beb1c3e2cb03/BAzT87Qfvg8rDzQ3MeWK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0f0be919-fd74-49e1-a16f-beb1c3e2cb03/BAzT87Qfvg8rDzQ3MeWK.webp","https://static.pierrefrey.com/uploads/product/packshots/e541bb7f-ddd8-46e8-81e1-1aa5f2d486c5/40jqKvYh1zlY9kL4ZLiB.webp","https://static.pierrefrey.com/uploads/product/packshots/87c2a7e2-cfdd-49bd-b274-eed44766d001/qmNAVvUOQ41eqfEwIVxu.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0f0be919-fd74-49e1-a16f-beb1c3e2cb03/BAzT87Qfvg8rDzQ3MeWK.webp,https://static.pierrefrey.com/uploads/product/packshots/e541bb7f-ddd8-46e8-81e1-1aa5f2d486c5/40jqKvYh1zlY9kL4ZLiB.webp,https://static.pierrefrey.com/uploads/product/packshots/87c2a7e2-cfdd-49bd-b274-eed44766d001/qmNAVvUOQ41eqfEwIVxu.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:11.493Z"}
+{"mfr_sku":"FP147002","pattern_name":"Sirocco","color_name":"Neige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP147002-sirocco","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0fc9126a-9f82-44ce-a922-1aea4a002a81/GonKGjh0k0F02VFi9hlE_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"63 % Polyamide - 28 % Viscose - 8 % Polyester - 1 % Cotton","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 62 cm - 24,40 inch | Straight repeat","Weight":"380 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY47"},"width":"140 cm / 55,11 inch","composition":"63 % Polyamide - 28 % Viscose - 8 % Polyester - 1 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 62 cm - 24,40 inch | Straight repeat","weight":"380 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sirocco","description":"Paperbacked fabrics, Sirocco. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0fc9126a-9f82-44ce-a922-1aea4a002a81/GonKGjh0k0F02VFi9hlE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0fc9126a-9f82-44ce-a922-1aea4a002a81/GonKGjh0k0F02VFi9hlE.webp","https://static.pierrefrey.com/uploads/product/packshots/3622f401-b577-4221-9ffc-7fb349e3a3ab/2TrTKQ0rtzyLTkPcbeAM.webp","https://static.pierrefrey.com/uploads/product/packshots/c1b0c50d-c01f-42bb-be39-04067d890727/MGb4JF19b0RQLdToqOxU.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0fc9126a-9f82-44ce-a922-1aea4a002a81/GonKGjh0k0F02VFi9hlE.webp,https://static.pierrefrey.com/uploads/product/packshots/3622f401-b577-4221-9ffc-7fb349e3a3ab/2TrTKQ0rtzyLTkPcbeAM.webp,https://static.pierrefrey.com/uploads/product/packshots/c1b0c50d-c01f-42bb-be39-04067d890727/MGb4JF19b0RQLdToqOxU.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:12.315Z"}
+{"mfr_sku":"FP137001","pattern_name":"Lys","color_name":"Peuplier","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP137001-lys","list_image":"https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 4 cm - 1,00 inch","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY48"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 4 cm - 1,00 inch","weight":"460 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Lys","description":"Wide width printed wallpapers - Vinyls, Lys. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:13.163Z"}
+{"mfr_sku":"FP154001","pattern_name":"Tamaris","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP154001-tamaris","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"60 % Jute - 20 % Cotton - 15 % Polyester - 5 % Acrylic","Width":"136 cm / 53,54 inch","Repeat":"H: 34 cm - 13,00 inch | V: 36 cm - 14,17 inch | Straight repeat","Weight":"590 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY47"},"width":"136 cm / 53,54 inch","composition":"60 % Jute - 20 % Cotton - 15 % Polyester - 5 % Acrylic","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 36 cm - 14,17 inch | Straight repeat","weight":"590 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tamaris","description":"Paperbacked fabrics, Tamaris. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/4df023e3-74dd-43bf-a779-aa32c148f1c8/kxyBOrDVTVy60qwZaFQU.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/4df023e3-74dd-43bf-a779-aa32c148f1c8/kxyBOrDVTVy60qwZaFQU.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:13.785Z"}
+{"mfr_sku":"FP131003","pattern_name":"Evros","color_name":"Menthe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP131003-evros","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"85 cm / 33,46 inch","Repeat":"H: 14 cm - 5,00 inch","Weight":"265 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY49"},"width":"85 cm / 33,46 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 14 cm - 5,00 inch","weight":"265 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Evros","description":"Paperbacked fabrics - Printed wallpapers, Evros. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:14.579Z"}
+{"mfr_sku":"FP134002","pattern_name":"Colorado","color_name":"Charbon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP134002-colorado","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"130 cm / 51,18 inch","Repeat":"H: 65 cm - 25,00 inch | V: 44 cm - 17,32 inch | Straight repeat","Weight":"325 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY48"},"width":"130 cm / 51,18 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 65 cm - 25,00 inch | V: 44 cm - 17,32 inch | Straight repeat","weight":"325 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Colorado","description":"Wide width printed wallpapers - Paperbacked fabrics, Colorado. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:15.417Z"}
+{"mfr_sku":"FP136002","pattern_name":"Tamise","color_name":"Miel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP136002-tamise","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 17 cm - 6,00 inch","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 17 cm - 6,00 inch","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tamise","description":"Printed wallpapers, Tamise. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:16.409Z"}
+{"mfr_sku":"FP117002","pattern_name":"Solo","color_name":"Ivoire","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP117002-solo","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"120 cm / 47,24 inch","Repeat":"H: 12 cm - 4,00 inch","Weight":"370 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY49"},"width":"120 cm / 47,24 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 12 cm - 4,00 inch","weight":"370 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Solo","description":"Paperbacked fabrics, Solo. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:17.227Z"}
+{"mfr_sku":"FP120002","pattern_name":"Saloum","color_name":"Mangue","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP120002-saloum","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"85 cm / 33,46 inch","Repeat":"H: 85 cm - 33,00 inch","Weight":"265 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY48"},"width":"85 cm / 33,46 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 85 cm - 33,00 inch","weight":"265 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Saloum","description":"Paperbacked fabrics - Printed wallpapers, Saloum. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:18.105Z"}
+{"mfr_sku":"FP150001","pattern_name":"Siwa","color_name":"Terre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP150001-siwa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2257d1b4-7218-4666-bddf-a46b8e9127dd/L4C0MgnfnXhPpAPxoNYr_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 68 cm - 26,77 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY47"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 68 cm - 26,77 inch | Half drop repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Siwa","description":"Wide width printed wallpapers, Siwa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2257d1b4-7218-4666-bddf-a46b8e9127dd/L4C0MgnfnXhPpAPxoNYr.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2257d1b4-7218-4666-bddf-a46b8e9127dd/L4C0MgnfnXhPpAPxoNYr.webp","https://static.pierrefrey.com/uploads/product/packshots/6ef488e4-2927-4db7-9a78-4ad6f3ad95af/GzNr8sVICHfQzbPY5Z2S.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/da146d8b-0978-4f2e-b342-a80f432a38cc/wSMMiPF2dHyqO8oAwgJg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2257d1b4-7218-4666-bddf-a46b8e9127dd/L4C0MgnfnXhPpAPxoNYr.webp,https://static.pierrefrey.com/uploads/product/packshots/6ef488e4-2927-4db7-9a78-4ad6f3ad95af/GzNr8sVICHfQzbPY5Z2S.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/da146d8b-0978-4f2e-b342-a80f432a38cc/wSMMiPF2dHyqO8oAwgJg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:18.724Z"}
+{"mfr_sku":"FP136006","pattern_name":"Tamise","color_name":"Craie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP136006-tamise","list_image":"https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 17 cm - 6,00 inch","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 17 cm - 6,00 inch","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tamise","description":"Printed wallpapers, Tamise. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:19.649Z"}
+{"mfr_sku":"FP101001","pattern_name":"Safari","color_name":"Ocre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP101001-safari","list_image":"https://static.pierrefrey.com/uploads/product/packshots/231d668d-ba7e-4396-8b86-3930879ca344/nOfngL1UAcktNtx66WTy_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 161 cm - 63,38 inch | Half drop repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY47"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 161 cm - 63,38 inch | Half drop repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Safari","description":"Wide width printed wallpapers, Safari. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/231d668d-ba7e-4396-8b86-3930879ca344/nOfngL1UAcktNtx66WTy.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/231d668d-ba7e-4396-8b86-3930879ca344/nOfngL1UAcktNtx66WTy.webp","https://static.pierrefrey.com/uploads/product/packshots/a8f0c568-ef68-4cb9-8d2b-852282e86aec/yRWhqogTyV6BkUdrnLan.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/e8b27a10-476d-4726-9528-8ab62bb1811a/cTJVmoi6l65qxlwmG0hl.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/231d668d-ba7e-4396-8b86-3930879ca344/nOfngL1UAcktNtx66WTy.webp,https://static.pierrefrey.com/uploads/product/packshots/a8f0c568-ef68-4cb9-8d2b-852282e86aec/yRWhqogTyV6BkUdrnLan.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/e8b27a10-476d-4726-9528-8ab62bb1811a/cTJVmoi6l65qxlwmG0hl.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:20.446Z"}
+{"mfr_sku":"FP135003","pattern_name":"Escaut","color_name":"Sauge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP135003-escaut","list_image":"https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g_251x335_webp.webp","specs":{"Type":"End-on-end threads - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"82 cm / 32,28 inch","Repeat":"H: 20 cm - 7,00 inch","Weight":"200 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"82 cm / 32,28 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 20 cm - 7,00 inch","weight":"200 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Escaut","description":"End-on-end threads - Printed wallpapers, Escaut. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:21.480Z"}
+{"mfr_sku":"FP127001","pattern_name":"Rio javari","color_name":"Cocktail","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP127001-rio-javari","list_image":"https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 29 cm - 11,41 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY48"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 29 cm - 11,41 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Rio javari","description":"Printed wallpapers, Rio javari. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:22.402Z"}
+{"mfr_sku":"FP139004","pattern_name":"Minette","color_name":"Mer","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP139004-minette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 2 cm -","Weight":"410 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 2 cm -","weight":"410 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Minette","description":"Vinyls - Printed wallpapers, Minette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:23.187Z"}
+{"mfr_sku":"FP117003","pattern_name":"Solo","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP117003-solo","list_image":"https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"120 cm / 47,24 inch","Repeat":"H: 12 cm - 4,00 inch","Weight":"370 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY49"},"width":"120 cm / 47,24 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 12 cm - 4,00 inch","weight":"370 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Solo","description":"Paperbacked fabrics, Solo. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:24.330Z"}
+{"mfr_sku":"FP156004","pattern_name":"Les dunes","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP156004-les-dunes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/26e6c2ce-bf67-40ee-adc4-118dd5b2ff34/1LHRMLKuAemv7RPFEjff_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 64 cm - 25,19 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY47"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 64 cm - 25,19 inch | Half drop repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les dunes","description":"Small width printed wallpapers, Les dunes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/26e6c2ce-bf67-40ee-adc4-118dd5b2ff34/1LHRMLKuAemv7RPFEjff.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/26e6c2ce-bf67-40ee-adc4-118dd5b2ff34/1LHRMLKuAemv7RPFEjff.webp","https://static.pierrefrey.com/uploads/product/packshots/efd2dfce-a256-41a4-83c4-04c94b4f5aff/lje1cz1HThFoyXZNX9ja.webp","https://static.pierrefrey.com/uploads/product/packshots/b093f730-ae3b-4fac-98f8-c3364e011229/QY8iTvCpU1IAYJE2vfcp.webp","https://static.pierrefrey.com/uploads/product/packshots/3ca46ffa-58ae-4601-bb58-42880a7ba58f/GkiZtTkhJphoZsYVwqZH.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/26e6c2ce-bf67-40ee-adc4-118dd5b2ff34/1LHRMLKuAemv7RPFEjff.webp,https://static.pierrefrey.com/uploads/product/packshots/efd2dfce-a256-41a4-83c4-04c94b4f5aff/lje1cz1HThFoyXZNX9ja.webp,https://static.pierrefrey.com/uploads/product/packshots/b093f730-ae3b-4fac-98f8-c3364e011229/QY8iTvCpU1IAYJE2vfcp.webp,https://static.pierrefrey.com/uploads/product/packshots/3ca46ffa-58ae-4601-bb58-42880a7ba58f/GkiZtTkhJphoZsYVwqZH.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:24.982Z"}
+{"mfr_sku":"FP151001","pattern_name":"Borkou","color_name":"Desert","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP151001-borkou","list_image":"https://static.pierrefrey.com/uploads/product/packshots/28cd8607-ca7c-4245-a401-a0c02c15ad7c/SOqGyeTQs0SO7ZXNNwCU_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 111 cm - 43,70 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY47"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 111 cm - 43,70 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Borkou","description":"Wide width printed wallpapers, Borkou. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/28cd8607-ca7c-4245-a401-a0c02c15ad7c/SOqGyeTQs0SO7ZXNNwCU.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/28cd8607-ca7c-4245-a401-a0c02c15ad7c/SOqGyeTQs0SO7ZXNNwCU.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed533ed-f6b2-44d7-8e1e-c136a6b03e4d/U3MHm6MUZ2qmMtYkZQ4T.webp","https://static.pierrefrey.com/uploads/product/packshots/bfc3c78b-3734-4a03-b703-dd12f6294b45/yTo5rSLCyaa7wEoL68Oz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/28cd8607-ca7c-4245-a401-a0c02c15ad7c/SOqGyeTQs0SO7ZXNNwCU.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed533ed-f6b2-44d7-8e1e-c136a6b03e4d/U3MHm6MUZ2qmMtYkZQ4T.webp,https://static.pierrefrey.com/uploads/product/packshots/bfc3c78b-3734-4a03-b703-dd12f6294b45/yTo5rSLCyaa7wEoL68Oz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:25.658Z"}
+{"mfr_sku":"FP158001","pattern_name":"Kasbah","color_name":"Soleil","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP158001-kasbah","list_image":"https://static.pierrefrey.com/uploads/product/packshots/30362a82-4372-44cf-81bb-a8c7696c49f6/1yqcLdZ26yeziSLsUWzO_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"130 cm / 51,18 inch","Repeat":"H: 130 cm - 51,00 inch | V: 146 cm - 57,48 inch | Straight repeat","Weight":"335 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY47"},"width":"130 cm / 51,18 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 130 cm - 51,00 inch | V: 146 cm - 57,48 inch | Straight repeat","weight":"335 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Kasbah","description":"Wide width printed wallpapers - Embossed patterns - Paperbacked fabrics, Kasbah. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/30362a82-4372-44cf-81bb-a8c7696c49f6/1yqcLdZ26yeziSLsUWzO.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/30362a82-4372-44cf-81bb-a8c7696c49f6/1yqcLdZ26yeziSLsUWzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4e13e740-17bf-4bc0-99ab-a3721c0a8fb6/OZpWwyjKrAja4u0BYWvC.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/30362a82-4372-44cf-81bb-a8c7696c49f6/1yqcLdZ26yeziSLsUWzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4e13e740-17bf-4bc0-99ab-a3721c0a8fb6/OZpWwyjKrAja4u0BYWvC.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:26.327Z"}
+{"mfr_sku":"FP134001","pattern_name":"Colorado","color_name":"Indigo","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP134001-colorado","list_image":"https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"130 cm / 51,18 inch","Repeat":"H: 65 cm - 25,00 inch | V: 44 cm - 17,32 inch | Straight repeat","Weight":"325 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY48"},"width":"130 cm / 51,18 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 65 cm - 25,00 inch | V: 44 cm - 17,32 inch | Straight repeat","weight":"325 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Colorado","description":"Wide width printed wallpapers - Paperbacked fabrics, Colorado. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:27.324Z"}
+{"mfr_sku":"FP126002","pattern_name":"Douro","color_name":"Terre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP126002-douro","list_image":"https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"88 % Polyester - 12 % Linen","Width":"90 cm / 35,43 inch","Repeat":"H: 15 cm - 5,00 inch","Weight":"580 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"90 cm / 35,43 inch","composition":"88 % Polyester - 12 % Linen","material":"NON WOVEN","pattern_repeat":"H: 15 cm - 5,00 inch","weight":"580 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Douro","description":"Wide width printed wallpapers - Paperbacked fabrics, Douro. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:28.171Z"}
+{"mfr_sku":"FP147001","pattern_name":"Sirocco","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP147001-sirocco","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3622f401-b577-4221-9ffc-7fb349e3a3ab/2TrTKQ0rtzyLTkPcbeAM_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"63 % Polyamide - 28 % Viscose - 8 % Polyester - 1 % Cotton","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 62 cm - 24,40 inch | Straight repeat","Weight":"380 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY47"},"width":"140 cm / 55,11 inch","composition":"63 % Polyamide - 28 % Viscose - 8 % Polyester - 1 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 62 cm - 24,40 inch | Straight repeat","weight":"380 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sirocco","description":"Paperbacked fabrics, Sirocco. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3622f401-b577-4221-9ffc-7fb349e3a3ab/2TrTKQ0rtzyLTkPcbeAM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3622f401-b577-4221-9ffc-7fb349e3a3ab/2TrTKQ0rtzyLTkPcbeAM.webp","https://static.pierrefrey.com/uploads/product/packshots/0fc9126a-9f82-44ce-a922-1aea4a002a81/GonKGjh0k0F02VFi9hlE.webp","https://static.pierrefrey.com/uploads/product/packshots/c1b0c50d-c01f-42bb-be39-04067d890727/MGb4JF19b0RQLdToqOxU.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3622f401-b577-4221-9ffc-7fb349e3a3ab/2TrTKQ0rtzyLTkPcbeAM.webp,https://static.pierrefrey.com/uploads/product/packshots/0fc9126a-9f82-44ce-a922-1aea4a002a81/GonKGjh0k0F02VFi9hlE.webp,https://static.pierrefrey.com/uploads/product/packshots/c1b0c50d-c01f-42bb-be39-04067d890727/MGb4JF19b0RQLdToqOxU.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:28.798Z"}
+{"mfr_sku":"FP132001","pattern_name":"Caprus","color_name":"Lagon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP132001-caprus","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"140 cm / 55,11 inch","Repeat":"H: 70 cm - 27,00 inch | V: 97 cm - 38,18 inch | Straight repeat","Weight":"325 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY48"},"width":"140 cm / 55,11 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 97 cm - 38,18 inch | Straight repeat","weight":"325 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Caprus","description":"Wide width printed wallpapers - Paperbacked fabrics, Caprus. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:29.641Z"}
+{"mfr_sku":"FP144001","pattern_name":"Agadez","color_name":"Ecume","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP144001-agadez","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3848db71-900a-49f7-a3e6-9f07762852a1/zuJ4F7Zirneou5Q8tGlx_251x335_webp.webp","specs":{"Type":"Embossed patterns - Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"PAPER","Composition":"39 % Sisa - 31 % Viscose - 17 % Cotton - 13 % Polyester","Width":"86 cm / 33,85 inch","Repeat":"H: 21 cm - 8,00 inch | V: 3 cm - 1,18 inch | Free match","Weight":"529 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"F9979PPFREY47"},"width":"86 cm / 33,85 inch","composition":"39 % Sisa - 31 % Viscose - 17 % Cotton - 13 % Polyester","material":"PAPER","pattern_repeat":"H: 21 cm - 8,00 inch | V: 3 cm - 1,18 inch | Free match","weight":"529 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Agadez","description":"Embossed patterns - Straws and similar materials - Embroideries, Agadez. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3848db71-900a-49f7-a3e6-9f07762852a1/zuJ4F7Zirneou5Q8tGlx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3848db71-900a-49f7-a3e6-9f07762852a1/zuJ4F7Zirneou5Q8tGlx.webp","https://static.pierrefrey.com/uploads/product/packshots/ea558490-3df9-430a-b850-56369a691f73/IavWU6YtMsgcUgvKaciL.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3848db71-900a-49f7-a3e6-9f07762852a1/zuJ4F7Zirneou5Q8tGlx.webp,https://static.pierrefrey.com/uploads/product/packshots/ea558490-3df9-430a-b850-56369a691f73/IavWU6YtMsgcUgvKaciL.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:30.389Z"}
+{"mfr_sku":"FP118002","pattern_name":"Columbia","color_name":"Seigle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP118002-columbia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"80 % Linen - 15 % Acrylic - 4 % Cotton - 1 % Polyester","Width":"140 cm / 55,11 inch","Repeat":"H: 23 cm - 9,00 inch","Weight":"380 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY48"},"width":"140 cm / 55,11 inch","composition":"80 % Linen - 15 % Acrylic - 4 % Cotton - 1 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 23 cm - 9,00 inch","weight":"380 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Columbia","description":"Paperbacked fabrics, Columbia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:31.242Z"}
+{"mfr_sku":"FP156003","pattern_name":"Les dunes","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP156003-les-dunes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3ca46ffa-58ae-4601-bb58-42880a7ba58f/GkiZtTkhJphoZsYVwqZH_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 64 cm - 25,19 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY47"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 64 cm - 25,19 inch | Half drop repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les dunes","description":"Small width printed wallpapers, Les dunes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3ca46ffa-58ae-4601-bb58-42880a7ba58f/GkiZtTkhJphoZsYVwqZH.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3ca46ffa-58ae-4601-bb58-42880a7ba58f/GkiZtTkhJphoZsYVwqZH.webp","https://static.pierrefrey.com/uploads/product/packshots/efd2dfce-a256-41a4-83c4-04c94b4f5aff/lje1cz1HThFoyXZNX9ja.webp","https://static.pierrefrey.com/uploads/product/packshots/b093f730-ae3b-4fac-98f8-c3364e011229/QY8iTvCpU1IAYJE2vfcp.webp","https://static.pierrefrey.com/uploads/product/packshots/26e6c2ce-bf67-40ee-adc4-118dd5b2ff34/1LHRMLKuAemv7RPFEjff.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3ca46ffa-58ae-4601-bb58-42880a7ba58f/GkiZtTkhJphoZsYVwqZH.webp,https://static.pierrefrey.com/uploads/product/packshots/efd2dfce-a256-41a4-83c4-04c94b4f5aff/lje1cz1HThFoyXZNX9ja.webp,https://static.pierrefrey.com/uploads/product/packshots/b093f730-ae3b-4fac-98f8-c3364e011229/QY8iTvCpU1IAYJE2vfcp.webp,https://static.pierrefrey.com/uploads/product/packshots/26e6c2ce-bf67-40ee-adc4-118dd5b2ff34/1LHRMLKuAemv7RPFEjff.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:31.890Z"}
+{"mfr_sku":"FP128002","pattern_name":"Danube","color_name":"Plage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP128002-danube","list_image":"https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ_335x251_webp.webp","specs":{"Type":"End-on-end threads - Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Jute","Width":"98 cm / 38,58 inch","Repeat":"H: 98 cm - 38,00 inch","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY48"},"width":"98 cm / 38,58 inch","composition":"100 % Jute","material":"NON WOVEN","pattern_repeat":"H: 98 cm - 38,00 inch","weight":"460 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Danube","description":"End-on-end threads - Wide width printed wallpapers, Danube. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:32.773Z"}
+{"mfr_sku":"FP133001","pattern_name":"Benin","color_name":"Cerise","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP133001-benin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"116 cm / 45,66 inch","Repeat":"H: 23 cm - 9,00 inch","Weight":"390 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Raised pattern","Information":"Panel effect","Book":"F9979PPFREY48"},"width":"116 cm / 45,66 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 23 cm - 9,00 inch","weight":"390 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Benin","description":"Wide width printed wallpapers, Benin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:33.576Z"}
+{"mfr_sku":"FP158002","pattern_name":"Kasbah","color_name":"Mer","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP158002-kasbah","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4e13e740-17bf-4bc0-99ab-a3721c0a8fb6/OZpWwyjKrAja4u0BYWvC_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"130 cm / 51,18 inch","Repeat":"H: 130 cm - 51,00 inch | V: 146 cm - 57,48 inch | Straight repeat","Weight":"335 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY47"},"width":"130 cm / 51,18 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 130 cm - 51,00 inch | V: 146 cm - 57,48 inch | Straight repeat","weight":"335 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Kasbah","description":"Wide width printed wallpapers - Embossed patterns - Paperbacked fabrics, Kasbah. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4e13e740-17bf-4bc0-99ab-a3721c0a8fb6/OZpWwyjKrAja4u0BYWvC.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4e13e740-17bf-4bc0-99ab-a3721c0a8fb6/OZpWwyjKrAja4u0BYWvC.webp","https://static.pierrefrey.com/uploads/product/packshots/30362a82-4372-44cf-81bb-a8c7696c49f6/1yqcLdZ26yeziSLsUWzO.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4e13e740-17bf-4bc0-99ab-a3721c0a8fb6/OZpWwyjKrAja4u0BYWvC.webp,https://static.pierrefrey.com/uploads/product/packshots/30362a82-4372-44cf-81bb-a8c7696c49f6/1yqcLdZ26yeziSLsUWzO.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:34.189Z"}
+{"mfr_sku":"FP124004","pattern_name":"Detroit","color_name":"Chamallow","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP124004-detroit","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY48"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Detroit","description":"Printed wallpapers, Detroit. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:35.027Z"}
+{"mfr_sku":"FP152003","pattern_name":"Agafay","color_name":"Terracotta","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP152003-agafay","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4f533734-f1da-4af2-a550-b0a5582a0909/8oGFwtmJTc547adwHkri_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Adrien Testard","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 93 cm - 36,61 inch | Half drop repeat","Weight":"150 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY47"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 93 cm - 36,61 inch | Half drop repeat","weight":"150 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Agafay","description":"Wide width printed wallpapers, Agafay. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4f533734-f1da-4af2-a550-b0a5582a0909/8oGFwtmJTc547adwHkri.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4f533734-f1da-4af2-a550-b0a5582a0909/8oGFwtmJTc547adwHkri.webp","https://static.pierrefrey.com/uploads/product/packshots/c3b36bbd-c284-4690-9140-9a05da3d5912/yFrjh9R37voiKBJpwTB1.webp","https://static.pierrefrey.com/uploads/product/packshots/8c1143e0-3db7-477c-b7ea-2ebdad250540/0Way7F4v0LXd6zFr3oQQ.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/ab6fe3c9-aaa7-42bf-a138-2fc9a1303be1/EMXbWEmC2XDNYU3z0U9d.webp","https://static.pierrefrey.com/uploads/product/packshots/acee5b10-13fe-42fc-b347-77a0b63e3bb0/2RgNnbb86EWCR4FQvXHz.webp","https://static.pierrefrey.com/uploads/product/packshots/c386e680-bd12-4bc4-8189-f3a08a18ca75/t8NaQDR1s5rNHgtUZEc6.webp","https://static.pierrefrey.com/uploads/product/packshots/7ebc8976-1559-4c35-8331-3d4981162ef2/Q0PupKGJvZbiQIQqoiSC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4f533734-f1da-4af2-a550-b0a5582a0909/8oGFwtmJTc547adwHkri.webp,https://static.pierrefrey.com/uploads/product/packshots/c3b36bbd-c284-4690-9140-9a05da3d5912/yFrjh9R37voiKBJpwTB1.webp,https://static.pierrefrey.com/uploads/product/packshots/8c1143e0-3db7-477c-b7ea-2ebdad250540/0Way7F4v0LXd6zFr3oQQ.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/ab6fe3c9-aaa7-42bf-a138-2fc9a1303be1/EMXbWEmC2XDNYU3z0U9d.webp,https://static.pierrefrey.com/uploads/product/packshots/acee5b10-13fe-42fc-b347-77a0b63e3bb0/2RgNnbb86EWCR4FQvXHz.webp,https://static.pierrefrey.com/uploads/product/packshots/c386e680-bd12-4bc4-8189-f3a08a18ca75/t8NaQDR1s5rNHgtUZEc6.webp,https://static.pierrefrey.com/uploads/product/packshots/7ebc8976-1559-4c35-8331-3d4981162ef2/Q0PupKGJvZbiQIQqoiSC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:35.800Z"}
+{"mfr_sku":"FP137002","pattern_name":"Lys","color_name":"Ble","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP137002-lys","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 4 cm - 1,00 inch","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY48"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 4 cm - 1,00 inch","weight":"460 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Lys","description":"Wide width printed wallpapers - Vinyls, Lys. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:36.646Z"}
+{"mfr_sku":"FP155001","pattern_name":"Bedouins","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP155001-bedouins","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5fc5718f-1170-4715-a234-b7f08e84aa60/862yXexFKiRKwpbP40Tv_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"85 cm / 33,46 inch","Repeat":"H: 85 cm - 33,00 inch | V: 154 cm - 60,62 inch | Free match","Weight":"265 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY47"},"width":"85 cm / 33,46 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 85 cm - 33,00 inch | V: 154 cm - 60,62 inch | Free match","weight":"265 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bedouins","description":"Paperbacked fabrics - Printed wallpapers, Bedouins. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5fc5718f-1170-4715-a234-b7f08e84aa60/862yXexFKiRKwpbP40Tv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5fc5718f-1170-4715-a234-b7f08e84aa60/862yXexFKiRKwpbP40Tv.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/a8e53689-83d3-407b-84f9-1180e3885803/fw7EIaWHKRf3uP8h6OKa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5fc5718f-1170-4715-a234-b7f08e84aa60/862yXexFKiRKwpbP40Tv.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/a8e53689-83d3-407b-84f9-1180e3885803/fw7EIaWHKRf3uP8h6OKa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:37.346Z"}
+{"mfr_sku":"FP140001","pattern_name":"Dordogne","color_name":"Bois","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP140001-dordogne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY48"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Dordogne","description":"Straws and similar materials - Printed wallpapers, Dordogne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:38.109Z"}
+{"mfr_sku":"FP135001","pattern_name":"Escaut","color_name":"Petale","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP135001-escaut","list_image":"https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs_251x335_webp.webp","specs":{"Type":"End-on-end threads - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"82 cm / 32,28 inch","Repeat":"H: 20 cm - 7,00 inch","Weight":"200 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"82 cm / 32,28 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 20 cm - 7,00 inch","weight":"200 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Escaut","description":"End-on-end threads - Printed wallpapers, Escaut. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:39.060Z"}
+{"mfr_sku":"FP116002","pattern_name":"Nil","color_name":"Sahara","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP116002-nil","list_image":"https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"126 cm / 49,60 inch","Repeat":"H: 18 cm - 7,00 inch","Weight":"380 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY49"},"width":"126 cm / 49,60 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 18 cm - 7,00 inch","weight":"380 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nil","description":"Paperbacked fabrics, Nil. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:39.902Z"}
+{"mfr_sku":"FP139003","pattern_name":"Minette","color_name":"Olive","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP139003-minette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 2 cm -","Weight":"410 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 2 cm -","weight":"410 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Minette","description":"Vinyls - Printed wallpapers, Minette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:40.795Z"}
+{"mfr_sku":"FP124003","pattern_name":"Detroit","color_name":"Cactus","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP124003-detroit","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY48"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Detroit","description":"Printed wallpapers, Detroit. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:41.587Z"}
+{"mfr_sku":"FP125001","pattern_name":"Oussouri","color_name":"Ocean","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP125001-oussouri","list_image":"https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 5 cm - 1,00 inch | V: 10 cm - 3,93 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY49"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 5 cm - 1,00 inch | V: 10 cm - 3,93 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Oussouri","description":"Wide width printed wallpapers, Oussouri. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:42.483Z"}
+{"mfr_sku":"FP127002","pattern_name":"Rio javari","color_name":"Argile","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP127002-rio-javari","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 29 cm - 11,41 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY48"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 29 cm - 11,41 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Rio javari","description":"Printed wallpapers, Rio javari. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:43.390Z"}
+{"mfr_sku":"FP150002","pattern_name":"Siwa","color_name":"Azur","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP150002-siwa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6ef488e4-2927-4db7-9a78-4ad6f3ad95af/GzNr8sVICHfQzbPY5Z2S_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 68 cm - 26,77 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY47"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 68 cm - 26,77 inch | Half drop repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Siwa","description":"Wide width printed wallpapers, Siwa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6ef488e4-2927-4db7-9a78-4ad6f3ad95af/GzNr8sVICHfQzbPY5Z2S.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6ef488e4-2927-4db7-9a78-4ad6f3ad95af/GzNr8sVICHfQzbPY5Z2S.webp","https://static.pierrefrey.com/uploads/product/packshots/2257d1b4-7218-4666-bddf-a46b8e9127dd/L4C0MgnfnXhPpAPxoNYr.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/da146d8b-0978-4f2e-b342-a80f432a38cc/wSMMiPF2dHyqO8oAwgJg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6ef488e4-2927-4db7-9a78-4ad6f3ad95af/GzNr8sVICHfQzbPY5Z2S.webp,https://static.pierrefrey.com/uploads/product/packshots/2257d1b4-7218-4666-bddf-a46b8e9127dd/L4C0MgnfnXhPpAPxoNYr.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/da146d8b-0978-4f2e-b342-a80f432a38cc/wSMMiPF2dHyqO8oAwgJg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:44.029Z"}
+{"mfr_sku":"FP116001","pattern_name":"Nil","color_name":"Coquillage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP116001-nil","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"126 cm / 49,60 inch","Repeat":"H: 18 cm - 7,00 inch","Weight":"380 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY49"},"width":"126 cm / 49,60 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 18 cm - 7,00 inch","weight":"380 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nil","description":"Paperbacked fabrics, Nil. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:44.877Z"}
+{"mfr_sku":"FP159001","pattern_name":"L'explorateur","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP159001-lexplorateur","list_image":"https://static.pierrefrey.com/uploads/product/packshots/719ab43d-cb99-4a1f-9fcd-5ba4b434be21/S6MpMXrgHnwzXTgBvQV7_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 65 cm - 25,59 inch | Straight repeat","Weight":"380 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flat screen printed","Information":"Panel effect | Inherent irregularities from the natural fiber | Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY47"},"width":"129 cm / 50,78 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 129 cm - 50,00 inch | V: 65 cm - 25,59 inch | Straight repeat","weight":"380 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"L'explorateur","description":"Wide width printed wallpapers - Paperbacked fabrics, L'explorateur. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/719ab43d-cb99-4a1f-9fcd-5ba4b434be21/S6MpMXrgHnwzXTgBvQV7.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/719ab43d-cb99-4a1f-9fcd-5ba4b434be21/S6MpMXrgHnwzXTgBvQV7.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/719ab43d-cb99-4a1f-9fcd-5ba4b434be21/S6MpMXrgHnwzXTgBvQV7.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:45.545Z"}
+{"mfr_sku":"FP119001","pattern_name":"Kikori","color_name":"Cocktail","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP119001-kikori","list_image":"https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw_335x251_webp.webp","specs":{"Type":"Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"PAPER","Composition":"46 % Sisa - 23 % Viscose - 21 % Cotton - 10 % Polyester","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 40 cm - 15,74 inch","Weight":"581 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Notes":"Raised pattern","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"F9979PPFREY48"},"width":"86 cm / 33,85 inch","composition":"46 % Sisa - 23 % Viscose - 21 % Cotton - 10 % Polyester","material":"PAPER","pattern_repeat":"H: 86 cm - 33,00 inch | V: 40 cm - 15,74 inch","weight":"581 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Kikori","description":"Straws and similar materials - Embroideries, Kikori. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:46.480Z"}
+{"mfr_sku":"FP136001","pattern_name":"Tamise","color_name":"Noisette","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP136001-tamise","list_image":"https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 17 cm - 6,00 inch","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 17 cm - 6,00 inch","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tamise","description":"Printed wallpapers, Tamise. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:47.297Z"}
+{"mfr_sku":"FP145001","pattern_name":"La source","color_name":"Dune","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP145001-la-source","list_image":"https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Jute","Width":"120 cm / 47,24 inch","Repeat":"H: 60 cm - 23,00 inch | V: 77 cm - 30,31 inch | Straight repeat","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"CFA recommended | Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY47"},"width":"120 cm / 47,24 inch","composition":"100 % Jute","material":"NON WOVEN","pattern_repeat":"H: 60 cm - 23,00 inch | V: 77 cm - 30,31 inch | Straight repeat","weight":"460 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La source","description":"Wide width printed wallpapers - Paperbacked fabrics, La source. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/608eec5c-e8cc-4914-a036-deb2ba0dbbeb/IKYiUGX50R5ToyEIcevd.webp","https://static.pierrefrey.com/uploads/product/packshots/b217b535-8456-43e7-9dfd-e4e71dc77ad4/foHQLKCFqCArnZi2cVVr.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3342df-82ec-414a-86e6-e3b765187be6/BOmxR1HBHHoSzLg92VgS.webp","https://static.pierrefrey.com/uploads/product/packshots/e226acd8-4fb0-422e-865d-c1a9dd962290/d302EMn06CPlsm4B6yV3.webp","https://static.pierrefrey.com/uploads/product/packshots/e569f04c-4621-405b-aec1-2b2243a2a973/8nORXQIiXOjXrCiNfm2U.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/608eec5c-e8cc-4914-a036-deb2ba0dbbeb/IKYiUGX50R5ToyEIcevd.webp,https://static.pierrefrey.com/uploads/product/packshots/b217b535-8456-43e7-9dfd-e4e71dc77ad4/foHQLKCFqCArnZi2cVVr.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3342df-82ec-414a-86e6-e3b765187be6/BOmxR1HBHHoSzLg92VgS.webp,https://static.pierrefrey.com/uploads/product/packshots/e226acd8-4fb0-422e-865d-c1a9dd962290/d302EMn06CPlsm4B6yV3.webp,https://static.pierrefrey.com/uploads/product/packshots/e569f04c-4621-405b-aec1-2b2243a2a973/8nORXQIiXOjXrCiNfm2U.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:48.041Z"}
+{"mfr_sku":"FP131002","pattern_name":"Evros","color_name":"Citron","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP131002-evros","list_image":"https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"85 cm / 33,46 inch","Repeat":"H: 14 cm - 5,00 inch","Weight":"265 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY49"},"width":"85 cm / 33,46 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 14 cm - 5,00 inch","weight":"265 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Evros","description":"Paperbacked fabrics - Printed wallpapers, Evros. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:49.047Z"}
+{"mfr_sku":"FP117004","pattern_name":"Solo","color_name":"Aube","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP117004-solo","list_image":"https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"120 cm / 47,24 inch","Repeat":"H: 12 cm - 4,00 inch","Weight":"370 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY49"},"width":"120 cm / 47,24 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 12 cm - 4,00 inch","weight":"370 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Solo","description":"Paperbacked fabrics, Solo. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:50.046Z"}
+{"mfr_sku":"FP133003","pattern_name":"Benin","color_name":"Ocean","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP133003-benin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"116 cm / 45,66 inch","Repeat":"H: 23 cm - 9,00 inch","Weight":"390 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Raised pattern","Information":"Panel effect","Book":"F9979PPFREY48"},"width":"116 cm / 45,66 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 23 cm - 9,00 inch","weight":"390 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Benin","description":"Wide width printed wallpapers, Benin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:50.940Z"}
+{"mfr_sku":"FP123003","pattern_name":"Seine","color_name":"Ebene","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP123003-seine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 52 cm - 20,47 inch","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 52 cm - 20,47 inch","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Seine","description":"Printed wallpapers, Seine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:51.812Z"}
+{"mfr_sku":"FP121004","pattern_name":"Angara","color_name":"Cactus","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP121004-angara","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 67 cm - 26,37 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY48"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 67 cm - 26,37 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Angara","description":"Wide width printed wallpapers, Angara. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:52.768Z"}
+{"mfr_sku":"FP149002","pattern_name":"Wahiba","color_name":"The","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP149002-wahiba","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7e577d27-3289-4da8-a6f1-0d7f10ff9d4a/blYBj4NMh7cCUr4ceM1F_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 180 cm - 70,86 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY47"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 180 cm - 70,86 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Wahiba","description":"Wide width printed wallpapers, Wahiba. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7e577d27-3289-4da8-a6f1-0d7f10ff9d4a/blYBj4NMh7cCUr4ceM1F.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7e577d27-3289-4da8-a6f1-0d7f10ff9d4a/blYBj4NMh7cCUr4ceM1F.webp","https://static.pierrefrey.com/uploads/product/packshots/a07109a9-6403-462d-b8f1-6d6e6c6753e3/1o0r7SHFQ6VEYKRVOGmA.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/41edb873-ba72-4d38-947a-e1f75e5f447b/aWvukbEePzIE1NMRqRRM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7e577d27-3289-4da8-a6f1-0d7f10ff9d4a/blYBj4NMh7cCUr4ceM1F.webp,https://static.pierrefrey.com/uploads/product/packshots/a07109a9-6403-462d-b8f1-6d6e6c6753e3/1o0r7SHFQ6VEYKRVOGmA.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/41edb873-ba72-4d38-947a-e1f75e5f447b/aWvukbEePzIE1NMRqRRM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:53.512Z"}
+{"mfr_sku":"FP117005","pattern_name":"Solo","color_name":"Pistache","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP117005-solo","list_image":"https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"120 cm / 47,24 inch","Repeat":"H: 12 cm - 4,00 inch","Weight":"370 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY49"},"width":"120 cm / 47,24 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 12 cm - 4,00 inch","weight":"370 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Solo","description":"Paperbacked fabrics, Solo. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:54.437Z"}
+{"mfr_sku":"FP118001","pattern_name":"Columbia","color_name":"Epices","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP118001-columbia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"80 % Linen - 15 % Acrylic - 4 % Cotton - 1 % Polyester","Width":"140 cm / 55,11 inch","Repeat":"H: 23 cm - 9,00 inch","Weight":"380 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY48"},"width":"140 cm / 55,11 inch","composition":"80 % Linen - 15 % Acrylic - 4 % Cotton - 1 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 23 cm - 9,00 inch","weight":"380 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Columbia","description":"Paperbacked fabrics, Columbia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:55.293Z"}
+{"mfr_sku":"FP137003","pattern_name":"Lys","color_name":"Rose","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP137003-lys","list_image":"https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 4 cm - 1,00 inch","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY48"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 4 cm - 1,00 inch","weight":"460 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Lys","description":"Wide width printed wallpapers - Vinyls, Lys. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:56.243Z"}
+{"mfr_sku":"FP153003","pattern_name":"Ammos","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP153003-ammos","list_image":"https://static.pierrefrey.com/uploads/product/packshots/87c2a7e2-cfdd-49bd-b274-eed44766d001/qmNAVvUOQ41eqfEwIVxu_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 75 cm - 29,00 inch | V: 87 cm - 34,25 inch | Half drop repeat","Weight":"250 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY47"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 75 cm - 29,00 inch | V: 87 cm - 34,25 inch | Half drop repeat","weight":"250 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ammos","description":"Straws and similar materials - Printed wallpapers, Ammos. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/87c2a7e2-cfdd-49bd-b274-eed44766d001/qmNAVvUOQ41eqfEwIVxu.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/87c2a7e2-cfdd-49bd-b274-eed44766d001/qmNAVvUOQ41eqfEwIVxu.webp","https://static.pierrefrey.com/uploads/product/packshots/e541bb7f-ddd8-46e8-81e1-1aa5f2d486c5/40jqKvYh1zlY9kL4ZLiB.webp","https://static.pierrefrey.com/uploads/product/packshots/0f0be919-fd74-49e1-a16f-beb1c3e2cb03/BAzT87Qfvg8rDzQ3MeWK.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/87c2a7e2-cfdd-49bd-b274-eed44766d001/qmNAVvUOQ41eqfEwIVxu.webp,https://static.pierrefrey.com/uploads/product/packshots/e541bb7f-ddd8-46e8-81e1-1aa5f2d486c5/40jqKvYh1zlY9kL4ZLiB.webp,https://static.pierrefrey.com/uploads/product/packshots/0f0be919-fd74-49e1-a16f-beb1c3e2cb03/BAzT87Qfvg8rDzQ3MeWK.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:57.008Z"}
+{"mfr_sku":"FP123002","pattern_name":"Seine","color_name":"Tomette","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP123002-seine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 52 cm - 20,47 inch","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 52 cm - 20,47 inch","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Seine","description":"Printed wallpapers, Seine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:58.335Z"}
+{"mfr_sku":"FP152002","pattern_name":"Agafay","color_name":"Aqua","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP152002-agafay","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8c1143e0-3db7-477c-b7ea-2ebdad250540/0Way7F4v0LXd6zFr3oQQ_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Adrien Testard","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 93 cm - 36,61 inch | Half drop repeat","Weight":"150 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY47"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 93 cm - 36,61 inch | Half drop repeat","weight":"150 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Agafay","description":"Wide width printed wallpapers, Agafay. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8c1143e0-3db7-477c-b7ea-2ebdad250540/0Way7F4v0LXd6zFr3oQQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8c1143e0-3db7-477c-b7ea-2ebdad250540/0Way7F4v0LXd6zFr3oQQ.webp","https://static.pierrefrey.com/uploads/product/packshots/c3b36bbd-c284-4690-9140-9a05da3d5912/yFrjh9R37voiKBJpwTB1.webp","https://static.pierrefrey.com/uploads/product/packshots/4f533734-f1da-4af2-a550-b0a5582a0909/8oGFwtmJTc547adwHkri.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/ab6fe3c9-aaa7-42bf-a138-2fc9a1303be1/EMXbWEmC2XDNYU3z0U9d.webp","https://static.pierrefrey.com/uploads/product/packshots/acee5b10-13fe-42fc-b347-77a0b63e3bb0/2RgNnbb86EWCR4FQvXHz.webp","https://static.pierrefrey.com/uploads/product/packshots/c386e680-bd12-4bc4-8189-f3a08a18ca75/t8NaQDR1s5rNHgtUZEc6.webp","https://static.pierrefrey.com/uploads/product/packshots/7ebc8976-1559-4c35-8331-3d4981162ef2/Q0PupKGJvZbiQIQqoiSC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8c1143e0-3db7-477c-b7ea-2ebdad250540/0Way7F4v0LXd6zFr3oQQ.webp,https://static.pierrefrey.com/uploads/product/packshots/c3b36bbd-c284-4690-9140-9a05da3d5912/yFrjh9R37voiKBJpwTB1.webp,https://static.pierrefrey.com/uploads/product/packshots/4f533734-f1da-4af2-a550-b0a5582a0909/8oGFwtmJTc547adwHkri.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/ab6fe3c9-aaa7-42bf-a138-2fc9a1303be1/EMXbWEmC2XDNYU3z0U9d.webp,https://static.pierrefrey.com/uploads/product/packshots/acee5b10-13fe-42fc-b347-77a0b63e3bb0/2RgNnbb86EWCR4FQvXHz.webp,https://static.pierrefrey.com/uploads/product/packshots/c386e680-bd12-4bc4-8189-f3a08a18ca75/t8NaQDR1s5rNHgtUZEc6.webp,https://static.pierrefrey.com/uploads/product/packshots/7ebc8976-1559-4c35-8331-3d4981162ef2/Q0PupKGJvZbiQIQqoiSC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:58.932Z"}
+{"mfr_sku":"FP116003","pattern_name":"Nil","color_name":"Ficelle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP116003-nil","list_image":"https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"126 cm / 49,60 inch","Repeat":"H: 18 cm - 7,00 inch","Weight":"380 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY49"},"width":"126 cm / 49,60 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 18 cm - 7,00 inch","weight":"380 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nil","description":"Paperbacked fabrics, Nil. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:06:59.899Z"}
+{"mfr_sku":"FP136005","pattern_name":"Tamise","color_name":"Framboise","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP136005-tamise","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 17 cm - 6,00 inch","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 17 cm - 6,00 inch","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tamise","description":"Printed wallpapers, Tamise. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:00.878Z"}
+{"mfr_sku":"FP149001","pattern_name":"Wahiba","color_name":"Menthe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP149001-wahiba","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a07109a9-6403-462d-b8f1-6d6e6c6753e3/1o0r7SHFQ6VEYKRVOGmA_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 180 cm - 70,86 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY47"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 180 cm - 70,86 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Wahiba","description":"Wide width printed wallpapers, Wahiba. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a07109a9-6403-462d-b8f1-6d6e6c6753e3/1o0r7SHFQ6VEYKRVOGmA.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a07109a9-6403-462d-b8f1-6d6e6c6753e3/1o0r7SHFQ6VEYKRVOGmA.webp","https://static.pierrefrey.com/uploads/product/packshots/7e577d27-3289-4da8-a6f1-0d7f10ff9d4a/blYBj4NMh7cCUr4ceM1F.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/41edb873-ba72-4d38-947a-e1f75e5f447b/aWvukbEePzIE1NMRqRRM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a07109a9-6403-462d-b8f1-6d6e6c6753e3/1o0r7SHFQ6VEYKRVOGmA.webp,https://static.pierrefrey.com/uploads/product/packshots/7e577d27-3289-4da8-a6f1-0d7f10ff9d4a/blYBj4NMh7cCUr4ceM1F.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/41edb873-ba72-4d38-947a-e1f75e5f447b/aWvukbEePzIE1NMRqRRM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:01.836Z"}
+{"mfr_sku":"FP135004","pattern_name":"Escaut","color_name":"Citron","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP135004-escaut","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD_251x335_webp.webp","specs":{"Type":"End-on-end threads - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"82 cm / 32,28 inch","Repeat":"H: 20 cm - 7,00 inch","Weight":"200 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"82 cm / 32,28 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 20 cm - 7,00 inch","weight":"200 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Escaut","description":"End-on-end threads - Printed wallpapers, Escaut. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:02.974Z"}
+{"mfr_sku":"FP145002","pattern_name":"La source","color_name":"Ecorce","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP145002-la-source","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Jute","Width":"120 cm / 47,24 inch","Repeat":"H: 60 cm - 23,00 inch | V: 77 cm - 30,31 inch | Straight repeat","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"CFA recommended | Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY47"},"width":"120 cm / 47,24 inch","composition":"100 % Jute","material":"NON WOVEN","pattern_repeat":"H: 60 cm - 23,00 inch | V: 77 cm - 30,31 inch | Straight repeat","weight":"460 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La source","description":"Wide width printed wallpapers - Paperbacked fabrics, La source. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/608eec5c-e8cc-4914-a036-deb2ba0dbbeb/IKYiUGX50R5ToyEIcevd.webp","https://static.pierrefrey.com/uploads/product/packshots/b217b535-8456-43e7-9dfd-e4e71dc77ad4/foHQLKCFqCArnZi2cVVr.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3342df-82ec-414a-86e6-e3b765187be6/BOmxR1HBHHoSzLg92VgS.webp","https://static.pierrefrey.com/uploads/product/packshots/e226acd8-4fb0-422e-865d-c1a9dd962290/d302EMn06CPlsm4B6yV3.webp","https://static.pierrefrey.com/uploads/product/packshots/e569f04c-4621-405b-aec1-2b2243a2a973/8nORXQIiXOjXrCiNfm2U.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/608eec5c-e8cc-4914-a036-deb2ba0dbbeb/IKYiUGX50R5ToyEIcevd.webp,https://static.pierrefrey.com/uploads/product/packshots/b217b535-8456-43e7-9dfd-e4e71dc77ad4/foHQLKCFqCArnZi2cVVr.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3342df-82ec-414a-86e6-e3b765187be6/BOmxR1HBHHoSzLg92VgS.webp,https://static.pierrefrey.com/uploads/product/packshots/e226acd8-4fb0-422e-865d-c1a9dd962290/d302EMn06CPlsm4B6yV3.webp,https://static.pierrefrey.com/uploads/product/packshots/e569f04c-4621-405b-aec1-2b2243a2a973/8nORXQIiXOjXrCiNfm2U.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:04.015Z"}
+{"mfr_sku":"FP101002","pattern_name":"Safari","color_name":"Charbon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP101002-safari","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a8f0c568-ef68-4cb9-8d2b-852282e86aec/yRWhqogTyV6BkUdrnLan_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 161 cm - 63,38 inch | Half drop repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY47"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 161 cm - 63,38 inch | Half drop repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Safari","description":"Wide width printed wallpapers, Safari. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a8f0c568-ef68-4cb9-8d2b-852282e86aec/yRWhqogTyV6BkUdrnLan.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a8f0c568-ef68-4cb9-8d2b-852282e86aec/yRWhqogTyV6BkUdrnLan.webp","https://static.pierrefrey.com/uploads/product/packshots/231d668d-ba7e-4396-8b86-3930879ca344/nOfngL1UAcktNtx66WTy.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/e8b27a10-476d-4726-9528-8ab62bb1811a/cTJVmoi6l65qxlwmG0hl.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a8f0c568-ef68-4cb9-8d2b-852282e86aec/yRWhqogTyV6BkUdrnLan.webp,https://static.pierrefrey.com/uploads/product/packshots/231d668d-ba7e-4396-8b86-3930879ca344/nOfngL1UAcktNtx66WTy.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/e8b27a10-476d-4726-9528-8ab62bb1811a/cTJVmoi6l65qxlwmG0hl.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:04.847Z"}
+{"mfr_sku":"FP140003","pattern_name":"Dordogne","color_name":"Jardin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP140003-dordogne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY48"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Dordogne","description":"Straws and similar materials - Printed wallpapers, Dordogne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:05.790Z"}
+{"mfr_sku":"FP117006","pattern_name":"Solo","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP117006-solo","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"120 cm / 47,24 inch","Repeat":"H: 12 cm - 4,00 inch","Weight":"370 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY49"},"width":"120 cm / 47,24 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 12 cm - 4,00 inch","weight":"370 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Solo","description":"Paperbacked fabrics, Solo. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:06.644Z"}
+{"mfr_sku":"FP156002","pattern_name":"Les dunes","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP156002-les-dunes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b093f730-ae3b-4fac-98f8-c3364e011229/QY8iTvCpU1IAYJE2vfcp_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 64 cm - 25,19 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY47"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 64 cm - 25,19 inch | Half drop repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les dunes","description":"Small width printed wallpapers, Les dunes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b093f730-ae3b-4fac-98f8-c3364e011229/QY8iTvCpU1IAYJE2vfcp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b093f730-ae3b-4fac-98f8-c3364e011229/QY8iTvCpU1IAYJE2vfcp.webp","https://static.pierrefrey.com/uploads/product/packshots/efd2dfce-a256-41a4-83c4-04c94b4f5aff/lje1cz1HThFoyXZNX9ja.webp","https://static.pierrefrey.com/uploads/product/packshots/3ca46ffa-58ae-4601-bb58-42880a7ba58f/GkiZtTkhJphoZsYVwqZH.webp","https://static.pierrefrey.com/uploads/product/packshots/26e6c2ce-bf67-40ee-adc4-118dd5b2ff34/1LHRMLKuAemv7RPFEjff.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b093f730-ae3b-4fac-98f8-c3364e011229/QY8iTvCpU1IAYJE2vfcp.webp,https://static.pierrefrey.com/uploads/product/packshots/efd2dfce-a256-41a4-83c4-04c94b4f5aff/lje1cz1HThFoyXZNX9ja.webp,https://static.pierrefrey.com/uploads/product/packshots/3ca46ffa-58ae-4601-bb58-42880a7ba58f/GkiZtTkhJphoZsYVwqZH.webp,https://static.pierrefrey.com/uploads/product/packshots/26e6c2ce-bf67-40ee-adc4-118dd5b2ff34/1LHRMLKuAemv7RPFEjff.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:07.414Z"}
+{"mfr_sku":"FP129001","pattern_name":"Maroni","color_name":"Chocolat","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP129001-maroni","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"80 % Linen - 20 % Cotton","Width":"110 cm / 43,30 inch","Repeat":"H: 55 cm - 21,00 inch","Weight":"365 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Information":"Panel effect","Book":"F9979PPFREY48"},"width":"110 cm / 43,30 inch","composition":"80 % Linen - 20 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 55 cm - 21,00 inch","weight":"365 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Maroni","description":"Wide width printed wallpapers - Paperbacked fabrics, Maroni. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:08.416Z"}
+{"mfr_sku":"FP122002","pattern_name":"Amour","color_name":"Tilleul","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP122002-amour","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Amour","description":"Printed wallpapers, Amour. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:09.239Z"}
+{"mfr_sku":"FP140004","pattern_name":"Dordogne","color_name":"Herbe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP140004-dordogne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY48"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Dordogne","description":"Straws and similar materials - Printed wallpapers, Dordogne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:10.219Z"}
+{"mfr_sku":"FP148001","pattern_name":"Mojave","color_name":"Tonnerre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP148001-mojave","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b363e856-ee8c-4a6d-ae1b-16279d3c3743/uzJbla3zP3fRGZffqeGv_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch | V: 34 cm - 13,38 inch | Straight repeat","Weight":"475 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY47"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 34 cm - 13,38 inch | Straight repeat","weight":"475 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mojave","description":"Vinyls - Printed wallpapers, Mojave. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b363e856-ee8c-4a6d-ae1b-16279d3c3743/uzJbla3zP3fRGZffqeGv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b363e856-ee8c-4a6d-ae1b-16279d3c3743/uzJbla3zP3fRGZffqeGv.webp","https://static.pierrefrey.com/uploads/product/packshots/e043b5e5-39cd-4343-b3b4-426721cbb9d7/XRlnD9ZxTFa5LEpff4N5.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b363e856-ee8c-4a6d-ae1b-16279d3c3743/uzJbla3zP3fRGZffqeGv.webp,https://static.pierrefrey.com/uploads/product/packshots/e043b5e5-39cd-4343-b3b4-426721cbb9d7/XRlnD9ZxTFa5LEpff4N5.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:10.971Z"}
+{"mfr_sku":"FP128001","pattern_name":"Danube","color_name":"Campagne","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP128001-danube","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs_335x251_webp.webp","specs":{"Type":"End-on-end threads - Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Jute","Width":"98 cm / 38,58 inch","Repeat":"H: 98 cm - 38,00 inch","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY48"},"width":"98 cm / 38,58 inch","composition":"100 % Jute","material":"NON WOVEN","pattern_repeat":"H: 98 cm - 38,00 inch","weight":"460 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Danube","description":"End-on-end threads - Wide width printed wallpapers, Danube. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:11.882Z"}
+{"mfr_sku":"FP146002","pattern_name":"Peninsule","color_name":"Jute","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP146002-peninsule","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 104 cm - 40,94 inch | Half drop repeat","Weight":"370 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY47"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 104 cm - 40,94 inch | Half drop repeat","weight":"370 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Peninsule","description":"Straws and similar materials - Printed wallpapers, Peninsule. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:12.589Z"}
+{"mfr_sku":"FP147003","pattern_name":"Sirocco","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP147003-sirocco","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c1b0c50d-c01f-42bb-be39-04067d890727/MGb4JF19b0RQLdToqOxU_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"63 % Polyamide - 28 % Viscose - 8 % Polyester - 1 % Cotton","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 62 cm - 24,40 inch | Straight repeat","Weight":"380 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY47"},"width":"140 cm / 55,11 inch","composition":"63 % Polyamide - 28 % Viscose - 8 % Polyester - 1 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 62 cm - 24,40 inch | Straight repeat","weight":"380 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sirocco","description":"Paperbacked fabrics, Sirocco. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c1b0c50d-c01f-42bb-be39-04067d890727/MGb4JF19b0RQLdToqOxU.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c1b0c50d-c01f-42bb-be39-04067d890727/MGb4JF19b0RQLdToqOxU.webp","https://static.pierrefrey.com/uploads/product/packshots/3622f401-b577-4221-9ffc-7fb349e3a3ab/2TrTKQ0rtzyLTkPcbeAM.webp","https://static.pierrefrey.com/uploads/product/packshots/0fc9126a-9f82-44ce-a922-1aea4a002a81/GonKGjh0k0F02VFi9hlE.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c1b0c50d-c01f-42bb-be39-04067d890727/MGb4JF19b0RQLdToqOxU.webp,https://static.pierrefrey.com/uploads/product/packshots/3622f401-b577-4221-9ffc-7fb349e3a3ab/2TrTKQ0rtzyLTkPcbeAM.webp,https://static.pierrefrey.com/uploads/product/packshots/0fc9126a-9f82-44ce-a922-1aea4a002a81/GonKGjh0k0F02VFi9hlE.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:13.339Z"}
+{"mfr_sku":"FP140005","pattern_name":"Dordogne","color_name":"Lagon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP140005-dordogne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY48"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Dordogne","description":"Straws and similar materials - Printed wallpapers, Dordogne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:14.217Z"}
+{"mfr_sku":"FP152001","pattern_name":"Agafay","color_name":"Kaki","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP152001-agafay","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c3b36bbd-c284-4690-9140-9a05da3d5912/yFrjh9R37voiKBJpwTB1_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Adrien Testard","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 93 cm - 36,61 inch | Half drop repeat","Weight":"150 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY47"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 93 cm - 36,61 inch | Half drop repeat","weight":"150 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Agafay","description":"Wide width printed wallpapers, Agafay. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c3b36bbd-c284-4690-9140-9a05da3d5912/yFrjh9R37voiKBJpwTB1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c3b36bbd-c284-4690-9140-9a05da3d5912/yFrjh9R37voiKBJpwTB1.webp","https://static.pierrefrey.com/uploads/product/packshots/8c1143e0-3db7-477c-b7ea-2ebdad250540/0Way7F4v0LXd6zFr3oQQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4f533734-f1da-4af2-a550-b0a5582a0909/8oGFwtmJTc547adwHkri.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/ab6fe3c9-aaa7-42bf-a138-2fc9a1303be1/EMXbWEmC2XDNYU3z0U9d.webp","https://static.pierrefrey.com/uploads/product/packshots/acee5b10-13fe-42fc-b347-77a0b63e3bb0/2RgNnbb86EWCR4FQvXHz.webp","https://static.pierrefrey.com/uploads/product/packshots/c386e680-bd12-4bc4-8189-f3a08a18ca75/t8NaQDR1s5rNHgtUZEc6.webp","https://static.pierrefrey.com/uploads/product/packshots/7ebc8976-1559-4c35-8331-3d4981162ef2/Q0PupKGJvZbiQIQqoiSC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c3b36bbd-c284-4690-9140-9a05da3d5912/yFrjh9R37voiKBJpwTB1.webp,https://static.pierrefrey.com/uploads/product/packshots/8c1143e0-3db7-477c-b7ea-2ebdad250540/0Way7F4v0LXd6zFr3oQQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4f533734-f1da-4af2-a550-b0a5582a0909/8oGFwtmJTc547adwHkri.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/ab6fe3c9-aaa7-42bf-a138-2fc9a1303be1/EMXbWEmC2XDNYU3z0U9d.webp,https://static.pierrefrey.com/uploads/product/packshots/acee5b10-13fe-42fc-b347-77a0b63e3bb0/2RgNnbb86EWCR4FQvXHz.webp,https://static.pierrefrey.com/uploads/product/packshots/c386e680-bd12-4bc4-8189-f3a08a18ca75/t8NaQDR1s5rNHgtUZEc6.webp,https://static.pierrefrey.com/uploads/product/packshots/7ebc8976-1559-4c35-8331-3d4981162ef2/Q0PupKGJvZbiQIQqoiSC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:14.989Z"}
+{"mfr_sku":"FP122001","pattern_name":"Amour","color_name":"Fjord","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP122001-amour","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Amour","description":"Printed wallpapers, Amour. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:15.919Z"}
+{"mfr_sku":"FP121003","pattern_name":"Angara","color_name":"Piment","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP121003-angara","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 67 cm - 26,37 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY48"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 67 cm - 26,37 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Angara","description":"Wide width printed wallpapers, Angara. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:16.959Z"}
+{"mfr_sku":"FP126001","pattern_name":"Douro","color_name":"Mais","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP126001-douro","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"88 % Polyester - 12 % Linen","Width":"90 cm / 35,43 inch","Repeat":"H: 15 cm - 5,00 inch","Weight":"580 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"90 cm / 35,43 inch","composition":"88 % Polyester - 12 % Linen","material":"NON WOVEN","pattern_repeat":"H: 15 cm - 5,00 inch","weight":"580 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Douro","description":"Wide width printed wallpapers - Paperbacked fabrics, Douro. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:17.907Z"}
+{"mfr_sku":"FP126003","pattern_name":"Douro","color_name":"Lichen","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP126003-douro","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"88 % Polyester - 12 % Linen","Width":"90 cm / 35,43 inch","Repeat":"H: 15 cm - 5,00 inch","Weight":"580 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"90 cm / 35,43 inch","composition":"88 % Polyester - 12 % Linen","material":"NON WOVEN","pattern_repeat":"H: 15 cm - 5,00 inch","weight":"580 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Douro","description":"Wide width printed wallpapers - Paperbacked fabrics, Douro. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:18.821Z"}
+{"mfr_sku":"FP131004","pattern_name":"Evros","color_name":"Ocean","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP131004-evros","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"85 cm / 33,46 inch","Repeat":"H: 14 cm - 5,00 inch","Weight":"265 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY49"},"width":"85 cm / 33,46 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 14 cm - 5,00 inch","weight":"265 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Evros","description":"Paperbacked fabrics - Printed wallpapers, Evros. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:19.676Z"}
+{"mfr_sku":"FP124001","pattern_name":"Detroit","color_name":"Soleil","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP124001-detroit","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY48"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Detroit","description":"Printed wallpapers, Detroit. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:20.499Z"}
+{"mfr_sku":"FP125003","pattern_name":"Oussouri","color_name":"Miel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP125003-oussouri","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 5 cm - 1,00 inch | V: 10 cm - 3,93 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY49"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 5 cm - 1,00 inch | V: 10 cm - 3,93 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Oussouri","description":"Wide width printed wallpapers, Oussouri. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:21.575Z"}
+{"mfr_sku":"FP154002","pattern_name":"Tamaris","color_name":"Dune","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP154002-tamaris","list_image":"https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"60 % Jute - 20 % Cotton - 15 % Polyester - 5 % Acrylic","Width":"136 cm / 53,54 inch","Repeat":"H: 34 cm - 13,00 inch | V: 36 cm - 14,17 inch | Straight repeat","Weight":"590 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY47"},"width":"136 cm / 53,54 inch","composition":"60 % Jute - 20 % Cotton - 15 % Polyester - 5 % Acrylic","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 36 cm - 14,17 inch | Straight repeat","weight":"590 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tamaris","description":"Paperbacked fabrics, Tamaris. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/4df023e3-74dd-43bf-a779-aa32c148f1c8/kxyBOrDVTVy60qwZaFQU.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/4df023e3-74dd-43bf-a779-aa32c148f1c8/kxyBOrDVTVy60qwZaFQU.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:22.220Z"}
+{"mfr_sku":"FP157001","pattern_name":"Ubari","color_name":"Mirage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP157001-ubari","list_image":"https://static.pierrefrey.com/uploads/product/packshots/df16c174-38b6-4d5f-92e9-112a8c95c30a/jhK9MjquJJwt8gMqAY2M_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 115 cm - 45,27 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY47"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 115 cm - 45,27 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ubari","description":"Wide width printed wallpapers, Ubari. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/df16c174-38b6-4d5f-92e9-112a8c95c30a/jhK9MjquJJwt8gMqAY2M.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/df16c174-38b6-4d5f-92e9-112a8c95c30a/jhK9MjquJJwt8gMqAY2M.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/c9e857e1-d432-429f-9748-aa9eaad760ca/8dNUEjgrcXeLDoQeqo3K.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/df16c174-38b6-4d5f-92e9-112a8c95c30a/jhK9MjquJJwt8gMqAY2M.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/c9e857e1-d432-429f-9748-aa9eaad760ca/8dNUEjgrcXeLDoQeqo3K.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:22.870Z"}
+{"mfr_sku":"FP148002","pattern_name":"Mojave","color_name":"Azur","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP148002-mojave","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e043b5e5-39cd-4343-b3b4-426721cbb9d7/XRlnD9ZxTFa5LEpff4N5_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch | V: 34 cm - 13,38 inch | Straight repeat","Weight":"475 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY47"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 34 cm - 13,38 inch | Straight repeat","weight":"475 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mojave","description":"Vinyls - Printed wallpapers, Mojave. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e043b5e5-39cd-4343-b3b4-426721cbb9d7/XRlnD9ZxTFa5LEpff4N5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e043b5e5-39cd-4343-b3b4-426721cbb9d7/XRlnD9ZxTFa5LEpff4N5.webp","https://static.pierrefrey.com/uploads/product/packshots/b363e856-ee8c-4a6d-ae1b-16279d3c3743/uzJbla3zP3fRGZffqeGv.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e043b5e5-39cd-4343-b3b4-426721cbb9d7/XRlnD9ZxTFa5LEpff4N5.webp,https://static.pierrefrey.com/uploads/product/packshots/b363e856-ee8c-4a6d-ae1b-16279d3c3743/uzJbla3zP3fRGZffqeGv.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:23.465Z"}
+{"mfr_sku":"FP120003","pattern_name":"Saloum","color_name":"Passion","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP120003-saloum","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"85 cm / 33,46 inch","Repeat":"H: 85 cm - 33,00 inch","Weight":"265 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY48"},"width":"85 cm / 33,46 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 85 cm - 33,00 inch","weight":"265 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Saloum","description":"Paperbacked fabrics - Printed wallpapers, Saloum. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:24.294Z"}
+{"mfr_sku":"FP153001","pattern_name":"Ammos","color_name":"Mordore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP153001-ammos","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e541bb7f-ddd8-46e8-81e1-1aa5f2d486c5/40jqKvYh1zlY9kL4ZLiB_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 75 cm - 29,00 inch | V: 87 cm - 34,25 inch | Half drop repeat","Weight":"250 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY47"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 75 cm - 29,00 inch | V: 87 cm - 34,25 inch | Half drop repeat","weight":"250 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ammos","description":"Straws and similar materials - Printed wallpapers, Ammos. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e541bb7f-ddd8-46e8-81e1-1aa5f2d486c5/40jqKvYh1zlY9kL4ZLiB.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e541bb7f-ddd8-46e8-81e1-1aa5f2d486c5/40jqKvYh1zlY9kL4ZLiB.webp","https://static.pierrefrey.com/uploads/product/packshots/0f0be919-fd74-49e1-a16f-beb1c3e2cb03/BAzT87Qfvg8rDzQ3MeWK.webp","https://static.pierrefrey.com/uploads/product/packshots/87c2a7e2-cfdd-49bd-b274-eed44766d001/qmNAVvUOQ41eqfEwIVxu.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e541bb7f-ddd8-46e8-81e1-1aa5f2d486c5/40jqKvYh1zlY9kL4ZLiB.webp,https://static.pierrefrey.com/uploads/product/packshots/0f0be919-fd74-49e1-a16f-beb1c3e2cb03/BAzT87Qfvg8rDzQ3MeWK.webp,https://static.pierrefrey.com/uploads/product/packshots/87c2a7e2-cfdd-49bd-b274-eed44766d001/qmNAVvUOQ41eqfEwIVxu.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:25.041Z"}
+{"mfr_sku":"FP138001","pattern_name":"Mira","color_name":"Lin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP138001-mira","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"88 % Polyester - 12 % Linen","Width":"90 cm / 35,43 inch","Weight":"580 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"90 cm / 35,43 inch","composition":"88 % Polyester - 12 % Linen","material":"NON WOVEN","pattern_repeat":null,"weight":"580 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mira","description":"Plains & semi plains - Paperbacked fabrics, Mira. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:25.941Z"}
+{"mfr_sku":"FP122003","pattern_name":"Amour","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP122003-amour","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Amour","description":"Printed wallpapers, Amour. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:26.862Z"}
+{"mfr_sku":"FP144002","pattern_name":"Agadez","color_name":"Houblon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP144002-agadez","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ea558490-3df9-430a-b850-56369a691f73/IavWU6YtMsgcUgvKaciL_251x335_webp.webp","specs":{"Type":"Embossed patterns - Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"PAPER","Composition":"39 % Sisa - 31 % Viscose - 17 % Cotton - 13 % Polyester","Width":"86 cm / 33,85 inch","Repeat":"H: 21 cm - 8,00 inch | V: 3 cm - 1,18 inch | Free match","Weight":"529 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"F9979PPFREY47"},"width":"86 cm / 33,85 inch","composition":"39 % Sisa - 31 % Viscose - 17 % Cotton - 13 % Polyester","material":"PAPER","pattern_repeat":"H: 21 cm - 8,00 inch | V: 3 cm - 1,18 inch | Free match","weight":"529 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Agadez","description":"Embossed patterns - Straws and similar materials - Embroideries, Agadez. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ea558490-3df9-430a-b850-56369a691f73/IavWU6YtMsgcUgvKaciL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ea558490-3df9-430a-b850-56369a691f73/IavWU6YtMsgcUgvKaciL.webp","https://static.pierrefrey.com/uploads/product/packshots/3848db71-900a-49f7-a3e6-9f07762852a1/zuJ4F7Zirneou5Q8tGlx.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ea558490-3df9-430a-b850-56369a691f73/IavWU6YtMsgcUgvKaciL.webp,https://static.pierrefrey.com/uploads/product/packshots/3848db71-900a-49f7-a3e6-9f07762852a1/zuJ4F7Zirneou5Q8tGlx.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:27.648Z"}
+{"mfr_sku":"FP132002","pattern_name":"Caprus","color_name":"Caramel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP132002-caprus","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"140 cm / 55,11 inch","Repeat":"H: 70 cm - 27,00 inch | V: 97 cm - 38,18 inch | Straight repeat","Weight":"325 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY48"},"width":"140 cm / 55,11 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 97 cm - 38,18 inch | Straight repeat","weight":"325 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Caprus","description":"Wide width printed wallpapers - Paperbacked fabrics, Caprus. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:28.634Z"}
+{"mfr_sku":"FP121002","pattern_name":"Angara","color_name":"Curry","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP121002-angara","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 67 cm - 26,37 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY48"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 67 cm - 26,37 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Angara","description":"Wide width printed wallpapers, Angara. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:29.496Z"}
+{"mfr_sku":"FP131001","pattern_name":"Evros","color_name":"Fraise","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP131001-evros","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"85 cm / 33,46 inch","Repeat":"H: 14 cm - 5,00 inch","Weight":"265 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY49"},"width":"85 cm / 33,46 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 14 cm - 5,00 inch","weight":"265 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Evros","description":"Paperbacked fabrics - Printed wallpapers, Evros. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:30.491Z"}
+{"mfr_sku":"FP136003","pattern_name":"Tamise","color_name":"Agave","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP136003-tamise","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 17 cm - 6,00 inch","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 17 cm - 6,00 inch","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tamise","description":"Printed wallpapers, Tamise. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:31.272Z"}
+{"mfr_sku":"FP156001","pattern_name":"Les dunes","color_name":"Tilleul","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP156001-les-dunes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/efd2dfce-a256-41a4-83c4-04c94b4f5aff/lje1cz1HThFoyXZNX9ja_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 64 cm - 25,19 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY47"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 64 cm - 25,19 inch | Half drop repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les dunes","description":"Small width printed wallpapers, Les dunes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/efd2dfce-a256-41a4-83c4-04c94b4f5aff/lje1cz1HThFoyXZNX9ja.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/efd2dfce-a256-41a4-83c4-04c94b4f5aff/lje1cz1HThFoyXZNX9ja.webp","https://static.pierrefrey.com/uploads/product/packshots/b093f730-ae3b-4fac-98f8-c3364e011229/QY8iTvCpU1IAYJE2vfcp.webp","https://static.pierrefrey.com/uploads/product/packshots/3ca46ffa-58ae-4601-bb58-42880a7ba58f/GkiZtTkhJphoZsYVwqZH.webp","https://static.pierrefrey.com/uploads/product/packshots/26e6c2ce-bf67-40ee-adc4-118dd5b2ff34/1LHRMLKuAemv7RPFEjff.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/efd2dfce-a256-41a4-83c4-04c94b4f5aff/lje1cz1HThFoyXZNX9ja.webp,https://static.pierrefrey.com/uploads/product/packshots/b093f730-ae3b-4fac-98f8-c3364e011229/QY8iTvCpU1IAYJE2vfcp.webp,https://static.pierrefrey.com/uploads/product/packshots/3ca46ffa-58ae-4601-bb58-42880a7ba58f/GkiZtTkhJphoZsYVwqZH.webp,https://static.pierrefrey.com/uploads/product/packshots/26e6c2ce-bf67-40ee-adc4-118dd5b2ff34/1LHRMLKuAemv7RPFEjff.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:32.048Z"}
+{"mfr_sku":"FP146001","pattern_name":"Peninsule","color_name":"Nacre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP146001-peninsule","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 104 cm - 40,94 inch | Half drop repeat","Weight":"370 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY47"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 104 cm - 40,94 inch | Half drop repeat","weight":"370 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Peninsule","description":"Straws and similar materials - Printed wallpapers, Peninsule. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:32.750Z"}
+{"mfr_sku":"FP120001","pattern_name":"Saloum","color_name":"Prairie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP120001-saloum","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"85 cm / 33,46 inch","Repeat":"H: 85 cm - 33,00 inch","Weight":"265 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY48"},"width":"85 cm / 33,46 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 85 cm - 33,00 inch","weight":"265 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Saloum","description":"Paperbacked fabrics - Printed wallpapers, Saloum. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:33.568Z"}
+{"mfr_sku":"FP121001","pattern_name":"Angara","color_name":"Ocean","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP121001-angara","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 67 cm - 26,37 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY48"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 67 cm - 26,37 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Angara","description":"Wide width printed wallpapers, Angara. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:34.452Z"}
+{"mfr_sku":"FP146003","pattern_name":"Peninsule","color_name":"Corde","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP146003-peninsule","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 104 cm - 40,94 inch | Half drop repeat","Weight":"370 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY47"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 104 cm - 40,94 inch | Half drop repeat","weight":"370 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Peninsule","description":"Straws and similar materials - Printed wallpapers, Peninsule. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:35.205Z"}
+{"mfr_sku":"FP125002","pattern_name":"Oussouri","color_name":"Fenouil","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP125002-oussouri","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 5 cm - 1,00 inch | V: 10 cm - 3,93 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY49"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 5 cm - 1,00 inch | V: 10 cm - 3,93 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Oussouri","description":"Wide width printed wallpapers, Oussouri. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:36.223Z"}
+{"mfr_sku":"FP139002","pattern_name":"Minette","color_name":"Miel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP139002-minette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 2 cm -","Weight":"410 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 2 cm -","weight":"410 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Minette","description":"Vinyls - Printed wallpapers, Minette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:37.084Z"}
+{"mfr_sku":"FP124002","pattern_name":"Detroit","color_name":"Piscine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP124002-detroit","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY48"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Detroit","description":"Printed wallpapers, Detroit. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:37.838Z"}
+{"mfr_sku":"FP117001","pattern_name":"Solo","color_name":"Aurore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP117001-solo","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"120 cm / 47,24 inch","Repeat":"H: 12 cm - 4,00 inch","Weight":"370 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY49"},"width":"120 cm / 47,24 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 12 cm - 4,00 inch","weight":"370 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Solo","description":"Paperbacked fabrics, Solo. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:38.618Z"}
+{"mfr_sku":"FP139001","pattern_name":"Minette","color_name":"Framboise","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP139001-minette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 2 cm -","Weight":"410 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 2 cm -","weight":"410 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Minette","description":"Vinyls - Printed wallpapers, Minette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:39.453Z"}
+{"mfr_sku":"FP126005","pattern_name":"Douro","color_name":"Craie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP126005-douro","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"88 % Polyester - 12 % Linen","Width":"90 cm / 35,43 inch","Repeat":"H: 15 cm - 5,00 inch","Weight":"580 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY49"},"width":"90 cm / 35,43 inch","composition":"88 % Polyester - 12 % Linen","material":"NON WOVEN","pattern_repeat":"H: 15 cm - 5,00 inch","weight":"580 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Douro","description":"Wide width printed wallpapers - Paperbacked fabrics, Douro. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp","https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp","https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp","https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp","https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp","https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp","https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp","https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp","https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp","https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp","https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp","https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp","https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp","https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp","https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp","https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp","https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp","https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp","https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp","https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp","https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp","https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp","https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp","https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp","https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp","https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp","https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp","https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp","https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp","https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp","https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp","https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp","https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp","https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp","https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp","https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp","https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp","https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp","https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp","https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp","https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp","https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp","https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp","https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp","https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp","https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp","https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp","https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp","https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp","https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp","https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp","https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp","https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp","https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp","https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp","https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp","https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp","https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp","https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp","https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp","https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp","https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp","https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp","https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp","https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp","https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp","https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp","https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp","https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp","https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp","https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp","https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fdca321c-9a12-4717-82cb-a2882ba2183d/1C8H8k1ggRUAr1iDMvmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/ccf99782-c00b-483c-9397-f279e6ec75a1/TucwpcX7Z67xfPDOsfFD.webp,https://static.pierrefrey.com/uploads/product/packshots/31eb3ab2-78c5-4ca4-a1cd-fbdff98033b2/cgT4jTXUPLql6hp3i5jz.webp,https://static.pierrefrey.com/uploads/product/packshots/cf0a8a76-3f0d-4d3c-bcd3-8614aa904c81/XjWrWbKpMaxBI4Il6mcD.webp,https://static.pierrefrey.com/uploads/product/packshots/0cc16c6b-233e-416b-875c-4a238e9226bf/MOktQemL0Bn74QeQZ1Ww.webp,https://static.pierrefrey.com/uploads/product/packshots/7c71ba72-c469-4ddb-9c12-a4f6ddf675be/MHeceBsY3As1uq03lEJ0.webp,https://static.pierrefrey.com/uploads/product/packshots/1d2b87e5-ef9f-445a-afd9-215e0525f252/8TUDyvHtXxspZlhiytRI.webp,https://static.pierrefrey.com/uploads/product/packshots/7d1f69a4-c05f-46bc-b92d-242c8f102653/MlBnQ0Ka5IyZoZgl5MIb.webp,https://static.pierrefrey.com/uploads/product/packshots/5271c851-92c2-421b-ae20-808ac83ffd9f/KN0FUtDg6z6rzsdDvNsh.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dfe0f4-6860-4caf-98c3-b8ce93b4e694/vZgAu447Ha2jirQNht0D.webp,https://static.pierrefrey.com/uploads/product/packshots/4c41e38d-e722-4665-a734-56410c0be85d/RsIfrnwX93tld0xCUygw.webp,https://static.pierrefrey.com/uploads/product/packshots/f7efe873-ee88-4948-ab10-29b0c4e9685b/KWpl0tKijblHFEIc7v2n.webp,https://static.pierrefrey.com/uploads/product/packshots/1a0c985b-0ccc-44de-8ed4-5ea678393bfb/bflkhxflpjjmHfx3t3LL.webp,https://static.pierrefrey.com/uploads/product/packshots/3649795d-1bd1-4cc1-b09b-6ad2d2ec26c7/SdaDas1IMaT5A7gDlVng.webp,https://static.pierrefrey.com/uploads/product/packshots/30bbf9a2-536c-4585-8b22-b170bdc7d82f/ZPMpCxAk8Cv4z7FpVKXs.webp,https://static.pierrefrey.com/uploads/product/packshots/6b54b1e4-90b6-4d22-9bb9-ed882f759103/4Ru8UQBtziO0qJOaO6xN.webp,https://static.pierrefrey.com/uploads/product/packshots/83a7b406-56a0-4849-ad4d-6c2f3e070eda/3Ueaqg53vBFZw05e5E1i.webp,https://static.pierrefrey.com/uploads/product/packshots/e9056d0f-c975-48ba-90bd-495ecd0f8e01/ELyyShhXbZsnb8J6l5Fk.webp,https://static.pierrefrey.com/uploads/product/packshots/23209e7d-172a-4831-a82b-c1e3c0fb1673/Bbcc2t0LDR1uz0fRN06g.webp,https://static.pierrefrey.com/uploads/product/packshots/e0a5e8ea-eab9-41e2-a962-acbd672bd9c6/biL67NzPWpkQemQsuZFL.webp,https://static.pierrefrey.com/uploads/product/packshots/41197584-dee9-4e68-8c76-5f1c0cc3bc45/BExGnxSk7cHh8q0rvtyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4e578f61-4a30-4ed5-87de-cdd5cd171239/abcv6aHltvVgH5kFbY2X.webp,https://static.pierrefrey.com/uploads/product/packshots/b1a8f76c-aacd-435c-ac05-88759cec0cbe/WiHCWlX1AG3JESdGOIXh.webp,https://static.pierrefrey.com/uploads/product/packshots/7156f5be-9a93-489b-90ef-a9589961685f/5R1zlN8M1oESHNICMDO5.webp,https://static.pierrefrey.com/uploads/product/packshots/72fea397-f7e3-4d77-90a7-e9471c312280/mgSbAOnnHgg3UGefrWUw.webp,https://static.pierrefrey.com/uploads/product/packshots/fb7d0927-499c-4d4b-8eb2-01c069014340/hdoNN5R6AM5S05b7uQWh.webp,https://static.pierrefrey.com/uploads/product/packshots/5fdfc556-97f1-46a4-82d6-cd15806e9fb3/5zwXuWf0VqPc0rIDD1lI.webp,https://static.pierrefrey.com/uploads/product/packshots/b1f1936e-dc88-4765-9fb2-1bc0f27721c1/QXlCvnCJWHkA7FhAyFJ4.webp,https://static.pierrefrey.com/uploads/product/packshots/1c7db791-8365-415b-9545-b905bd9f4867/dl6dGnZ48lQqRL2Gv1ol.webp,https://static.pierrefrey.com/uploads/product/packshots/0d2334f1-c14a-4a3c-8efd-6e51e31aacd7/fqrRkUU84YN6zhQzVs8H.webp,https://static.pierrefrey.com/uploads/product/packshots/8baa0ee8-ceb4-4d7d-a29e-40507322b6e8/guXWrYJVsqeFRJ7nmDtB.webp,https://static.pierrefrey.com/uploads/product/packshots/f9f70835-49ed-47d4-abde-786fa8106e23/lxh8j8i4jMcNHmRMTgZn.webp,https://static.pierrefrey.com/uploads/product/packshots/24e474a0-0142-41f9-8da4-9fbf7253f0b7/akqjqKggRnuyNw5x02DQ.webp,https://static.pierrefrey.com/uploads/product/packshots/77a4dcc8-d25b-4536-b9ba-af0482d0a5b9/ZkJXYvMWPXxe4eXaUwNu.webp,https://static.pierrefrey.com/uploads/product/packshots/836779eb-7795-46f7-ab9a-3683592721e8/EKCEc8oKqY0QlKhDUYUg.webp,https://static.pierrefrey.com/uploads/product/packshots/b040a9ac-3b59-4435-937e-632eb4e6cde4/3V1DEVEQlzkR1Vpw2aZg.webp,https://static.pierrefrey.com/uploads/product/packshots/f719c662-ffa3-4fc9-897d-f1419b48f72d/Z5HAsBeay7XmgnR4xQZ9.webp,https://static.pierrefrey.com/uploads/product/packshots/ed712002-8da1-4a68-96a4-b815970d6f42/i4YzCuwBoFwEKuLgRj0P.webp,https://static.pierrefrey.com/uploads/product/packshots/c7916e23-382a-4a30-b930-9f480ae67186/t4LSpkOlPcssq5NqkE4a.webp,https://static.pierrefrey.com/uploads/product/packshots/12e2ed7c-3bbf-40e3-bffd-2e72651a6ba1/kAYjo4FQDDJEkzuLmFYn.webp,https://static.pierrefrey.com/uploads/product/packshots/875e0f94-1c9f-417e-a9d6-1a80d5c0ba3d/5N8CAz35pJGoCYDVOLJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/c61e0d2e-9a28-4160-8d15-aeebcbdfce99/FACAc95oa2CkQebnG79W.webp,https://static.pierrefrey.com/uploads/product/packshots/ea4e65c3-1c29-480d-8be8-634aa1d3a1ef/0xDuhlbXXP6P29Jx1UMh.webp,https://static.pierrefrey.com/uploads/product/packshots/05453d8e-3445-4fc6-95f7-c21bbfb22017/HBr6h67xDolrURbcGatD.webp,https://static.pierrefrey.com/uploads/product/packshots/04bc82e8-cf03-42b2-af75-5a8ce1eb072a/fQ76c9KU2iSfoJILnY6K.webp,https://static.pierrefrey.com/uploads/product/packshots/7a317b46-bc57-457a-afbc-1b18cf4003ea/N0aXwelqvpTZ1BjWPtzR.webp,https://static.pierrefrey.com/uploads/product/packshots/69ae35c6-7fe7-486c-8bbe-e70408f60121/p1nB6azGKCKODzwgNtqN.webp,https://static.pierrefrey.com/uploads/product/packshots/d986681b-467f-4c0f-bfb0-d173865e36f5/anaONPVyrqOfIpM0Zd7T.webp,https://static.pierrefrey.com/uploads/product/packshots/ef27ebbe-a6fe-4fd2-9de2-12b0695569a9/W9GvqpgXiubvf2BU3K0E.webp,https://static.pierrefrey.com/uploads/product/packshots/76a912a0-a144-4a4f-9d46-143db5dffd69/YpU7m5oGuiwBXUTu1YoQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d4082754-dd00-4382-ba47-0e3cc414b993/mIKcLbrczdXA1jtiBU14.webp,https://static.pierrefrey.com/uploads/product/packshots/ecec9e6a-8e55-4d2a-b73c-dc8de9104162/gfa4rMRwRdKP2g11WuIt.webp,https://static.pierrefrey.com/uploads/product/packshots/1a64613d-8bab-4ba1-bebd-0c97d8dc16b8/XdlrlVrxOkE7QIksN1vq.webp,https://static.pierrefrey.com/uploads/product/packshots/23b17cfe-b05a-4e9e-a0b7-3851b277a314/T10YKq57eIFM7xVZiNlR.webp,https://static.pierrefrey.com/uploads/product/packshots/3c573d0d-585d-491d-98b0-2840cae3e351/Us1eWJ92YYyevWXfRWZj.webp,https://static.pierrefrey.com/uploads/product/packshots/64c4e619-3e60-40fb-8c61-ca9651f2f34f/Ef9b4PzuVxbAMBioDWCs.webp,https://static.pierrefrey.com/uploads/product/packshots/0e2f59dc-0812-4239-9dee-05bc854b4106/O7uKPvlGqYv7N1SgtFKY.webp,https://static.pierrefrey.com/uploads/product/packshots/a5c42fac-a55c-4d4d-a611-05d3ec280127/XCNZkoiWhnyWRLgPR7rD.webp,https://static.pierrefrey.com/uploads/product/packshots/f4314d5d-587c-48c1-ac94-f335c5102ce7/7aVOZ8zr5gDuveLtEygs.webp,https://static.pierrefrey.com/uploads/product/packshots/1fdc8889-3e76-4bd1-a128-e46b95b28084/ZVuVJGoYlxm8k5o05hG8.webp,https://static.pierrefrey.com/uploads/product/packshots/b37077bc-8afe-45af-b3fd-394ba820ce44/tPWdY9ftw6tGW3bhadIs.webp,https://static.pierrefrey.com/uploads/product/packshots/d7beddd0-94ac-4477-88c1-1f3902cc63ca/KZDfE7zcpdJgnoDGHnsO.webp,https://static.pierrefrey.com/uploads/product/packshots/f87c916d-c966-4730-a465-2c01a3e51ec3/7CDjWQnSYpWkeOI5UPJb.webp,https://static.pierrefrey.com/uploads/product/packshots/6764b96c-e609-4eb5-8b83-24e6d7378bbe/8soJeH84PGdxss1Da1Cs.webp,https://static.pierrefrey.com/uploads/product/packshots/64e56e2f-b076-4a4f-a8a1-356e2a506d13/fkcH77cdd4tg4B8OjStJ.webp,https://static.pierrefrey.com/uploads/product/packshots/986cdc53-2216-4e14-93bd-dddb97a8d625/qEvlPodU1o29pjYQO6Iv.webp,https://static.pierrefrey.com/uploads/product/packshots/f8176f7d-c602-4fcb-ad52-a9c75ace71fb/H04LpJMNYqIAJCqe7bMU.webp,https://static.pierrefrey.com/uploads/product/packshots/65362064-ce6d-49f6-9527-bc25a9bee1dc/Ug3C326basjirUfTeC0m.webp,https://static.pierrefrey.com/uploads/product/packshots/243e8075-1527-4d25-877b-dcbac63f13d2/J0Ck0lbr4nyQjkOiSHXe.webp,https://static.pierrefrey.com/uploads/product/packshots/01604d9d-58d8-42a8-8c42-5df9a51cb798/Z1aJQNcQUGWBZahOOG7G.webp,https://static.pierrefrey.com/uploads/product/packshots/ae629a94-7c2d-4a9d-9ca2-f767040907ec/urHNWTh0vumgCBZpaKvq.webp,https://static.pierrefrey.com/uploads/product/packshots/c23873b9-919b-4b56-bd47-6f1f94aba799/3PVklpks9NQ42dNb0hoN.webp,https://static.pierrefrey.com/uploads/product/packshots/74853bcb-4387-4a22-88ca-8ce1b690d1ed/Xb64bkUXwlesJ2XQjAbV.webp,https://static.pierrefrey.com/uploads/product/packshots/ef4b2d12-332c-47a9-861c-bfbcda5b1386/TxKsTvFdnPOIFFzJLJpS.webp,https://static.pierrefrey.com/uploads/product/packshots/0d040076-07e9-4cf8-b7d9-91a24a37fe44/usenTTfFcwyGPar2QrsP.webp,https://static.pierrefrey.com/uploads/product/packshots/9a310223-bc8a-4ab4-a6b3-58fb1aee080c/cxAzkV4tl4VME7udOFEm.webp,https://static.pierrefrey.com/uploads/product/packshots/22b95602-367e-4e08-a7e8-c875e2ae206d/VDRO5JGhUrKGrIIGXyAn.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:40.313Z"}
+{"mfr_sku":"FP142001","pattern_name":"L'arbre du voyageur","color_name":"Vegetal","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP142001-larbre-du-voyageur","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ff34d76c-98d7-4774-92f8-827c10995341/riOf9FIMQOhdpuHvFvRf_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"66 % Viscose - 34 % Polyester","Width":"135 cm / 53,14 inch","Repeat":"H: 135 cm - 53,00 inch | V: 69 cm - 27,16 inch | Straight repeat","Weight":"245 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY47"},"width":"135 cm / 53,14 inch","composition":"66 % Viscose - 34 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 135 cm - 53,00 inch | V: 69 cm - 27,16 inch | Straight repeat","weight":"245 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"L'arbre du voyageur","description":"Wide width printed wallpapers - Paperbacked fabrics, L'arbre du voyageur. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ff34d76c-98d7-4774-92f8-827c10995341/riOf9FIMQOhdpuHvFvRf.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ff34d76c-98d7-4774-92f8-827c10995341/riOf9FIMQOhdpuHvFvRf.webp","https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp","https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp","https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp","https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp","https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp","https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp","https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp","https://static.pierrefrey.com/uploads/product/packshots/6ffcf284-495a-4e2c-89ce-5c852dfc1ccb/1U8rHdAsJVAcK5QlrBSp.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ff34d76c-98d7-4774-92f8-827c10995341/riOf9FIMQOhdpuHvFvRf.webp,https://static.pierrefrey.com/uploads/product/packshots/761f06df-eb44-446f-9fec-07f629ce2763/dauXoGcWUW2ASOLnD9Ph.webp,https://static.pierrefrey.com/uploads/product/packshots/b5c3c530-2794-4c22-bc66-3d520a80692a/Tmlvq0LTv27zdltWEfXa.webp,https://static.pierrefrey.com/uploads/product/packshots/1408eb7c-5615-4cc3-abda-bec0362570ad/FbEpyQBvCYbzlDLDU0Oo.webp,https://static.pierrefrey.com/uploads/product/packshots/a712c866-fbe3-4e13-96d8-1db75bdfe7d7/rK2Ddeg9A097pycpusVi.webp,https://static.pierrefrey.com/uploads/product/packshots/f2416b2f-d643-4893-97e5-030445865b9a/nvdFfX0xiHoAbM9iD0PP.webp,https://static.pierrefrey.com/uploads/product/packshots/f797da29-afff-4d1b-ab8d-d0eaa8322d64/B43HzHomO12Uq6wDxxdA.webp,https://static.pierrefrey.com/uploads/product/packshots/dca06420-69a0-477f-964f-5a53b794901a/n94YpaDGv5eyhYvxItkT.webp,https://static.pierrefrey.com/uploads/product/packshots/6ffcf284-495a-4e2c-89ce-5c852dfc1ccb/1U8rHdAsJVAcK5QlrBSp.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:41.068Z"}
+{"mfr_sku":"FP482002","pattern_name":"Sur le nil","color_name":"Papyrus","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP482002-sur-le-nil","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 98 cm - 38,58 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 98 cm - 38,58 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sur le nil","description":"Wide width printed wallpapers, Sur le nil. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","https://static.pierrefrey.com/uploads/product/packshots/d6d49fcf-f08a-4da0-b424-869cfaf41303/KpnvaVERtlnkQqUFy0wu.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp,https://static.pierrefrey.com/uploads/product/packshots/d6d49fcf-f08a-4da0-b424-869cfaf41303/KpnvaVERtlnkQqUFy0wu.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:41.740Z"}
+{"mfr_sku":"FP327005","pattern_name":"Jardin de paradis","color_name":"Coquille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP327005-jardin-de-paradis","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 70 cm - 27,55 inch | Half drop repeat","Weight":"210 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 70 cm - 27,55 inch | Half drop repeat","weight":"210 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Jardin de paradis","description":"Small width printed wallpapers, Jardin de paradis. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp","https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp","https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp","https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp","https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp","https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp","https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp","https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp","https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp","https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp","https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp","https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp","https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp","https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/7bd5ee79-504b-4b5a-bede-ecebff20a3b6/sFAAfukqFvML761FJRjV.webp,https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/a651f249-b639-46f3-965a-527eca51a3b6/3rPDGTtRcst3ypb1QGjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad659c7-2d90-41f2-ae47-db278227f7be/qg7cM8eMk5zeu6edWyZn.webp,https://static.pierrefrey.com/uploads/product/packshots/0f8798f2-434a-44aa-a901-dbeb0606e8e0/SfxMdXQFQl4rRc4hlG4Q.webp,https://static.pierrefrey.com/uploads/product/packshots/8bae87a5-b946-45eb-8a94-3654553184ab/WFxFS2yMZnMdqvkWUsBJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d350f925-84e1-477b-879d-21f492d16ad1/YzUEdgC4YRd8PAvh5zPa.webp,https://static.pierrefrey.com/uploads/product/packshots/7fad5bf8-39ad-441d-b9e6-5f5fca4a4065/cgCSAelD7qG7zrrcKEFH.webp,https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp,https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp,https://static.pierrefrey.com/uploads/product/packshots/3a679cf8-7e4d-48b0-b603-461ee464e8bb/O0lwUISlHksYFvEJ34Cl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5ef8442-1879-4a50-9514-2003bfd3c334/IIOiTJHr8xt7EXSGOLpK.webp,https://static.pierrefrey.com/uploads/product/packshots/d6b55c69-93d5-4751-a40a-d9478bce6a37/FE4RX3caFApHhoHEKSsc.webp,https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ed0962d8-48a1-4c5c-9237-238be8c3eb30/tcXwbNjsPU0LAsJ4OhvI.webp,https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp,https://static.pierrefrey.com/uploads/product/packshots/81d76fe4-11e9-4072-ae91-cbce636cd35b/9CA6W7pL0LKQ7NjbyzzL.webp,https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp,https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:42.530Z"}
+{"mfr_sku":"FP093002","pattern_name":"Champ fleuri","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP093002-champ-fleuri","list_image":"https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 70 cm - 27,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY46"},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Champ fleuri","description":"Wide width printed wallpapers, Champ fleuri. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:43.266Z"}
+{"mfr_sku":"FP106001","pattern_name":"Hedera","color_name":"Lichen","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP106001-hedera","list_image":"https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV_335x251_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 63 cm - 24,80 inch | Half drop repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Book":"F9979PPFREY46"},"width":"86 cm / 33,85 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 86 cm - 33,00 inch | V: 63 cm - 24,80 inch | Half drop repeat","weight":"240 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Hedera","description":"Straws and similar materials - Printed wallpapers, Hedera. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/589a2d80-e5a2-4cff-88d4-0f7385881d06/E0J3CNcnTI96tUWtv5dl.webp","https://static.pierrefrey.com/uploads/product/packshots/61747607-150d-4f5a-b5f0-606cfb0170bc/RI51C6YfhN5NBhPMqVuw.webp","https://static.pierrefrey.com/uploads/product/packshots/c98f9ea8-8dc7-494d-895a-e3e348cde147/veZ70InVFrYjMZCIQozC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/589a2d80-e5a2-4cff-88d4-0f7385881d06/E0J3CNcnTI96tUWtv5dl.webp,https://static.pierrefrey.com/uploads/product/packshots/61747607-150d-4f5a-b5f0-606cfb0170bc/RI51C6YfhN5NBhPMqVuw.webp,https://static.pierrefrey.com/uploads/product/packshots/c98f9ea8-8dc7-494d-895a-e3e348cde147/veZ70InVFrYjMZCIQozC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:44.239Z"}
+{"mfr_sku":"FP109004","pattern_name":"Daphne","color_name":"Corail","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP109004-daphne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"86 cm / 33,85 inch","Repeat":"H: 43 cm - 16,00 inch | V: 54 cm - 21,25 inch | Straight repeat","Weight":"245 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY46"},"width":"86 cm / 33,85 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 43 cm - 16,00 inch | V: 54 cm - 21,25 inch | Straight repeat","weight":"245 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Daphne","description":"Straws and similar materials - Printed wallpapers, Daphne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/bb7e633a-b043-43dc-bbf4-e4d9a41708ff/9VofgDW8tajVuWBqdO7N.webp","https://static.pierrefrey.com/uploads/product/packshots/7e51796a-a695-43fe-8d46-1b43bb1360ca/MZQEePUOI2hSqFgS1gvL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/bb7e633a-b043-43dc-bbf4-e4d9a41708ff/9VofgDW8tajVuWBqdO7N.webp,https://static.pierrefrey.com/uploads/product/packshots/7e51796a-a695-43fe-8d46-1b43bb1360ca/MZQEePUOI2hSqFgS1gvL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:44.990Z"}
+{"mfr_sku":"FP109001","pattern_name":"Daphne","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP109001-daphne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"86 cm / 33,85 inch","Repeat":"H: 43 cm - 16,00 inch | V: 54 cm - 21,25 inch | Straight repeat","Weight":"245 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY46"},"width":"86 cm / 33,85 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 43 cm - 16,00 inch | V: 54 cm - 21,25 inch | Straight repeat","weight":"245 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Daphne","description":"Straws and similar materials - Printed wallpapers, Daphne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/bb7e633a-b043-43dc-bbf4-e4d9a41708ff/9VofgDW8tajVuWBqdO7N.webp","https://static.pierrefrey.com/uploads/product/packshots/7e51796a-a695-43fe-8d46-1b43bb1360ca/MZQEePUOI2hSqFgS1gvL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/bb7e633a-b043-43dc-bbf4-e4d9a41708ff/9VofgDW8tajVuWBqdO7N.webp,https://static.pierrefrey.com/uploads/product/packshots/7e51796a-a695-43fe-8d46-1b43bb1360ca/MZQEePUOI2hSqFgS1gvL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:45.788Z"}
+{"mfr_sku":"FP096002","pattern_name":"En forêt","color_name":"Turquoise","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP096002-en-foret","list_image":"https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 68 cm - 26,00 inch | V: 63 cm - 24,80 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 63 cm - 24,80 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"En forêt","description":"Wide width printed wallpapers, En forêt. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/a5970999-e293-4d4f-b741-f3a679cd03f9/ka9uJ4my4G6ds94Ux907.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0d87e1-279f-4393-8d3f-f4f181ac1073/sIXFnyR90gDQphjMSGOr.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e74c48-d45b-430a-b31d-2ef3311935ca/lV2d0dQc6OvyKs0TMUP9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/a5970999-e293-4d4f-b741-f3a679cd03f9/ka9uJ4my4G6ds94Ux907.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0d87e1-279f-4393-8d3f-f4f181ac1073/sIXFnyR90gDQphjMSGOr.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e74c48-d45b-430a-b31d-2ef3311935ca/lV2d0dQc6OvyKs0TMUP9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:46.647Z"}
+{"mfr_sku":"FP084002","pattern_name":"Botanique","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP084002-fougeres-botaniques","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"PAPER","Composition":"52 % Sisa - 24 % Cotton - 16 % Viscose - 8 % Polyester","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 79 cm - 31,10 inch | Free match","Weight":"500 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Notes":"Raised pattern","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"F9979PPFREY46"},"width":"86 cm / 33,85 inch","composition":"52 % Sisa - 24 % Cotton - 16 % Viscose - 8 % Polyester","material":"PAPER","pattern_repeat":"H: 86 cm - 33,00 inch | V: 79 cm - 31,10 inch | Free match","weight":"500 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Botanique","description":"Straws and similar materials - Embroideries, Botanique. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/d95eaf02-73b7-4b93-bd28-ba2377968b31/73QMN1F0cLTRcg4cFPSv.webp","https://static.pierrefrey.com/uploads/product/packshots/7983cd6a-30c8-4ff9-8305-7a54b312908f/qDgfttBGB4MqoA9EIrtz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/d95eaf02-73b7-4b93-bd28-ba2377968b31/73QMN1F0cLTRcg4cFPSv.webp,https://static.pierrefrey.com/uploads/product/packshots/7983cd6a-30c8-4ff9-8305-7a54b312908f/qDgfttBGB4MqoA9EIrtz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:47.468Z"}
+{"mfr_sku":"FP111001","pattern_name":"Forestiere","color_name":"Elixir","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP111001-forestiere","list_image":"https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 129 cm - 50,78 inch | Half drop repeat","Weight":"245 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY46"},"width":"86 cm / 33,85 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 86 cm - 33,00 inch | V: 129 cm - 50,78 inch | Half drop repeat","weight":"245 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Forestiere","description":"Straws and similar materials - Printed wallpapers, Forestiere. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:48.251Z"}
+{"mfr_sku":"FP099002","pattern_name":"Chance","color_name":"Herbe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP099002-chance","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"H: 90 cm - 35,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"190 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","Book":"F9979PPFREY46"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"190 gr / m²","certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Chance","description":"Wide width printed wallpapers - Embossed patterns, Chance. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:49.074Z"}
+{"mfr_sku":"FP102002","pattern_name":"Nassau","color_name":"Jungle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP102002-nassau","list_image":"https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"130 cm / 51,18 inch","Repeat":"H: 130 cm - 51,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY46"},"width":"130 cm / 51,18 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 130 cm - 51,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nassau","description":"Wide width printed wallpapers - Paperbacked fabrics, Nassau. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:49.914Z"}
+{"mfr_sku":"FP088002","pattern_name":"Bois dormant","color_name":"Foret","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP088002-bois-dormant","list_image":"https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 180 cm - 70,86 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 180 cm - 70,86 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bois dormant","description":"Wide width printed wallpapers, Bois dormant. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:50.800Z"}
+{"mfr_sku":"FP105001","pattern_name":"Black tulips","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP105001-black-tulips","list_image":"https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Artist":"Gael Davrinche","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 83 cm - 32,67 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY46"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 83 cm - 32,67 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Black tulips","description":"Vinyls - Printed wallpapers, Black tulips. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:51.738Z"}
+{"mfr_sku":"FP099003","pattern_name":"Chance","color_name":"Charbon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP099003-chance","list_image":"https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"H: 90 cm - 35,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"190 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","Book":"F9979PPFREY46"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"190 gr / m²","certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Chance","description":"Wide width printed wallpapers - Embossed patterns, Chance. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:52.494Z"}
+{"mfr_sku":"FP107001","pattern_name":"Les graminees","color_name":"Herbe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP107001-cluny","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 89 cm - 35,03 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 89 cm - 35,03 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les graminees","description":"Wide width printed wallpapers, Les graminees. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/2a19b724-e276-457d-9437-6c4645ea9b03/ySMINmssacyrjLuKHlRL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/2a19b724-e276-457d-9437-6c4645ea9b03/ySMINmssacyrjLuKHlRL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:53.328Z"}
+{"mfr_sku":"FP091001","pattern_name":"Calathea","color_name":"Mousse","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP091001-calathea","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Carla Talopp","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 60 cm - 23,62 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 60 cm - 23,62 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Calathea","description":"Wide width printed wallpapers, Calathea. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:54.275Z"}
+{"mfr_sku":"FP093003","pattern_name":"Champ fleuri","color_name":"Fusain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP093003-champ-fleuri","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 70 cm - 27,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY46"},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Champ fleuri","description":"Wide width printed wallpapers, Champ fleuri. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:55.058Z"}
+{"mfr_sku":"FP109003","pattern_name":"Daphne","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP109003-daphne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"86 cm / 33,85 inch","Repeat":"H: 43 cm - 16,00 inch | V: 54 cm - 21,25 inch | Straight repeat","Weight":"245 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY46"},"width":"86 cm / 33,85 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 43 cm - 16,00 inch | V: 54 cm - 21,25 inch | Straight repeat","weight":"245 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Daphne","description":"Straws and similar materials - Printed wallpapers, Daphne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/bb7e633a-b043-43dc-bbf4-e4d9a41708ff/9VofgDW8tajVuWBqdO7N.webp","https://static.pierrefrey.com/uploads/product/packshots/7e51796a-a695-43fe-8d46-1b43bb1360ca/MZQEePUOI2hSqFgS1gvL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/bb7e633a-b043-43dc-bbf4-e4d9a41708ff/9VofgDW8tajVuWBqdO7N.webp,https://static.pierrefrey.com/uploads/product/packshots/7e51796a-a695-43fe-8d46-1b43bb1360ca/MZQEePUOI2hSqFgS1gvL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:56.173Z"}
+{"mfr_sku":"FP083001","pattern_name":"Jasmine","color_name":"Paille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP083001-jasmine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"PAPER","Composition":"50 % Sisa - 22 % Cotton - 9 % Wool - 9 % Viscose - 8 % Polyester - 2 % Linen","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 40 cm - 15,74 inch | Free match","Weight":"502 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Notes":"Raised pattern","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"F9979PPFREY46"},"width":"86 cm / 33,85 inch","composition":"50 % Sisa - 22 % Cotton - 9 % Wool - 9 % Viscose - 8 % Polyester - 2 % Linen","material":"PAPER","pattern_repeat":"H: 86 cm - 33,00 inch | V: 40 cm - 15,74 inch | Free match","weight":"502 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Jasmine","description":"Straws and similar materials - Embroideries, Jasmine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/096f7de3-822c-4317-99f6-19fefdef5889/UVphyfXB1badHXai0t3t.webp","https://static.pierrefrey.com/uploads/product/packshots/e658601f-766e-4404-841b-11810e9c8b13/0OVhY52rvn5qaLctjehj.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/096f7de3-822c-4317-99f6-19fefdef5889/UVphyfXB1badHXai0t3t.webp,https://static.pierrefrey.com/uploads/product/packshots/e658601f-766e-4404-841b-11810e9c8b13/0OVhY52rvn5qaLctjehj.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:57.096Z"}
+{"mfr_sku":"FP110001","pattern_name":"Groseiller","color_name":"Fp110001","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP110001-groseiller","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 145 cm - 57,08 inch | Half drop repeat","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY46"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 145 cm - 57,08 inch | Half drop repeat","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Groseiller","description":"Straws and similar materials - Printed wallpapers, Groseiller. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:57.908Z"}
+{"mfr_sku":"FP094001","pattern_name":"Galla","color_name":"Vert Pomme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP094001-galla","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 91 cm - 35,00 inch | V: 57 cm - 22,44 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 91 cm - 35,00 inch | V: 57 cm - 22,44 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Galla","description":"Wide width printed wallpapers, Galla. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:58.844Z"}
+{"mfr_sku":"FP102003","pattern_name":"Nassau","color_name":"Lagon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP102003-nassau","list_image":"https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"130 cm / 51,18 inch","Repeat":"H: 130 cm - 51,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY46"},"width":"130 cm / 51,18 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 130 cm - 51,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nassau","description":"Wide width printed wallpapers - Paperbacked fabrics, Nassau. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:07:59.747Z"}
+{"mfr_sku":"FP088001","pattern_name":"Bois dormant","color_name":"Grisaille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP088001-bois-dormant","list_image":"https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 180 cm - 70,86 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 180 cm - 70,86 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bois dormant","description":"Wide width printed wallpapers, Bois dormant. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:00.747Z"}
+{"mfr_sku":"FP092002","pattern_name":"Monstera","color_name":"Jungle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP092002-monstera","list_image":"https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 67 cm - 26,37 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 67 cm - 26,37 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Monstera","description":"Wide width printed wallpapers, Monstera. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:02.459Z"}
+{"mfr_sku":"FP104002","pattern_name":"Eldorado","color_name":"Foret","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP104002-eldorado","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"OSNABURG","Composition":"100 % Vinyl","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 136 cm - 53,54 inch | Half drop repeat","Weight":"455 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY46"},"width":"129 cm / 50,78 inch","composition":"100 % Vinyl","material":"OSNABURG","pattern_repeat":"H: 129 cm - 50,00 inch | V: 136 cm - 53,54 inch | Half drop repeat","weight":"455 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Eldorado","description":"Wide width printed wallpapers - Vinyls, Eldorado. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/6a2c210d-edc8-45e4-8c88-a2484a423d0e/3aUWizUkWgGZlnITyR8j.webp","https://static.pierrefrey.com/uploads/product/packshots/006d12fd-08d3-4164-9b1b-796f0d8de548/HCHGKDcFv5qiysthFM5a.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/6a2c210d-edc8-45e4-8c88-a2484a423d0e/3aUWizUkWgGZlnITyR8j.webp,https://static.pierrefrey.com/uploads/product/packshots/006d12fd-08d3-4164-9b1b-796f0d8de548/HCHGKDcFv5qiysthFM5a.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:04.044Z"}
+{"mfr_sku":"FP109002","pattern_name":"Daphne","color_name":"Mordore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP109002-daphne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"86 cm / 33,85 inch","Repeat":"H: 43 cm - 16,00 inch | V: 54 cm - 21,25 inch | Straight repeat","Weight":"245 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY46"},"width":"86 cm / 33,85 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 43 cm - 16,00 inch | V: 54 cm - 21,25 inch | Straight repeat","weight":"245 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Daphne","description":"Straws and similar materials - Printed wallpapers, Daphne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/bb7e633a-b043-43dc-bbf4-e4d9a41708ff/9VofgDW8tajVuWBqdO7N.webp","https://static.pierrefrey.com/uploads/product/packshots/7e51796a-a695-43fe-8d46-1b43bb1360ca/MZQEePUOI2hSqFgS1gvL.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/bb7e633a-b043-43dc-bbf4-e4d9a41708ff/9VofgDW8tajVuWBqdO7N.webp,https://static.pierrefrey.com/uploads/product/packshots/7e51796a-a695-43fe-8d46-1b43bb1360ca/MZQEePUOI2hSqFgS1gvL.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:04.985Z"}
+{"mfr_sku":"FP096001","pattern_name":"En forêt","color_name":"Ocre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP096001-en-foret","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 68 cm - 26,00 inch | V: 63 cm - 24,80 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 63 cm - 24,80 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"En forêt","description":"Wide width printed wallpapers, En forêt. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/a5970999-e293-4d4f-b741-f3a679cd03f9/ka9uJ4my4G6ds94Ux907.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0d87e1-279f-4393-8d3f-f4f181ac1073/sIXFnyR90gDQphjMSGOr.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e74c48-d45b-430a-b31d-2ef3311935ca/lV2d0dQc6OvyKs0TMUP9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/a5970999-e293-4d4f-b741-f3a679cd03f9/ka9uJ4my4G6ds94Ux907.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0d87e1-279f-4393-8d3f-f4f181ac1073/sIXFnyR90gDQphjMSGOr.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e74c48-d45b-430a-b31d-2ef3311935ca/lV2d0dQc6OvyKs0TMUP9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:06.304Z"}
+{"mfr_sku":"FP083002","pattern_name":"Jasmine","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP083002-jasmine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"PAPER","Composition":"50 % Sisa - 22 % Cotton - 9 % Wool - 9 % Viscose - 8 % Polyester - 2 % Linen","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 40 cm - 15,74 inch | Free match","Weight":"502 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Notes":"Raised pattern","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"F9979PPFREY46"},"width":"86 cm / 33,85 inch","composition":"50 % Sisa - 22 % Cotton - 9 % Wool - 9 % Viscose - 8 % Polyester - 2 % Linen","material":"PAPER","pattern_repeat":"H: 86 cm - 33,00 inch | V: 40 cm - 15,74 inch | Free match","weight":"502 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Jasmine","description":"Straws and similar materials - Embroideries, Jasmine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/096f7de3-822c-4317-99f6-19fefdef5889/UVphyfXB1badHXai0t3t.webp","https://static.pierrefrey.com/uploads/product/packshots/e658601f-766e-4404-841b-11810e9c8b13/0OVhY52rvn5qaLctjehj.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/096f7de3-822c-4317-99f6-19fefdef5889/UVphyfXB1badHXai0t3t.webp,https://static.pierrefrey.com/uploads/product/packshots/e658601f-766e-4404-841b-11810e9c8b13/0OVhY52rvn5qaLctjehj.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:07.059Z"}
+{"mfr_sku":"FP095001","pattern_name":"Khao lak","color_name":"Lagon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP095001-khao-lak","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 129 cm - 50,78 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 129 cm - 50,78 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Khao lak","description":"Wide width printed wallpapers, Khao lak. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:07.907Z"}
+{"mfr_sku":"FP087001","pattern_name":"Les pois de senteur","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP087001-pois-de-senteur","list_image":"https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 77 cm - 30,31 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 77 cm - 30,31 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les pois de senteur","description":"Wide width printed wallpapers, Les pois de senteur. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/b9415a4f-157c-4ca7-9dae-7e8b8a4d3ba5/6CpkMNVDRlZcjLHmLaLD.webp","https://static.pierrefrey.com/uploads/product/packshots/2bab1ea2-fcc3-4189-916c-7fc798e3933f/FcbPykdcyYfxXTUSU814.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/b9415a4f-157c-4ca7-9dae-7e8b8a4d3ba5/6CpkMNVDRlZcjLHmLaLD.webp,https://static.pierrefrey.com/uploads/product/packshots/2bab1ea2-fcc3-4189-916c-7fc798e3933f/FcbPykdcyYfxXTUSU814.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:08.694Z"}
+{"mfr_sku":"FP093001","pattern_name":"Champ fleuri","color_name":"Ocre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP093001-champ-fleuri","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 70 cm - 27,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY46"},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Champ fleuri","description":"Wide width printed wallpapers, Champ fleuri. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:09.529Z"}
+{"mfr_sku":"FP097001","pattern_name":"Pollen","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP097001-pollen","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Charlotte Boutron","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Pollen","description":"Wide width printed wallpapers, Pollen. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:10.442Z"}
+{"mfr_sku":"FP092001","pattern_name":"Monstera","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP092001-monstera","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 67 cm - 26,37 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 67 cm - 26,37 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Monstera","description":"Wide width printed wallpapers, Monstera. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:11.258Z"}
+{"mfr_sku":"FP090001","pattern_name":"Keiko","color_name":"Lie De Vin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP090001-keiko","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Keiko Yanagisawa","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 75 cm - 29,52 inch | Half drop repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 75 cm - 29,52 inch | Half drop repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Keiko","description":"Wide width printed wallpapers, Keiko. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/f460596f-bdee-4643-86ab-d1334e698b16/ppP5gZUWv5KImFOapA8o.webp","https://static.pierrefrey.com/uploads/product/packshots/3976e8ae-4bb4-4f91-bd2f-01a46bda47b5/EDkipZ1Lg2tbD1nmJcLf.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/f460596f-bdee-4643-86ab-d1334e698b16/ppP5gZUWv5KImFOapA8o.webp,https://static.pierrefrey.com/uploads/product/packshots/3976e8ae-4bb4-4f91-bd2f-01a46bda47b5/EDkipZ1Lg2tbD1nmJcLf.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:12.118Z"}
+{"mfr_sku":"FP112001","pattern_name":"Bois des fees","color_name":"Fp112001","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP112001-bois-des-fees","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA_335x251_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 65 cm - 25,59 inch | Straight repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Book":"F9979PPFREY46"},"width":"86 cm / 33,85 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 86 cm - 33,00 inch | V: 65 cm - 25,59 inch | Straight repeat","weight":"240 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bois des fees","description":"Straws and similar materials - Printed wallpapers, Bois des fees. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/e8b96dbd-2220-4018-aefe-337ab53796f2/hNr4tPWGoKNKPj2K8gON.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/e8b96dbd-2220-4018-aefe-337ab53796f2/hNr4tPWGoKNKPj2K8gON.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:13.025Z"}
+{"mfr_sku":"FP089002","pattern_name":"Flore","color_name":"Tropical","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP089002-flore","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Raphaël Schmitt","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 143 cm - 56,29 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 143 cm - 56,29 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Flore","description":"Wide width printed wallpapers, Flore. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/85d95368-a3fd-44f3-bcf5-e37cd4c4fe28/LY7eHMaEbM4OBkjuUeL2.webp","https://static.pierrefrey.com/uploads/product/packshots/31969e62-7f8a-4d31-93d9-ec685355e00b/SZI49yg7FoggLEZ1CTsv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/85d95368-a3fd-44f3-bcf5-e37cd4c4fe28/LY7eHMaEbM4OBkjuUeL2.webp,https://static.pierrefrey.com/uploads/product/packshots/31969e62-7f8a-4d31-93d9-ec685355e00b/SZI49yg7FoggLEZ1CTsv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:13.813Z"}
+{"mfr_sku":"FP088003","pattern_name":"Bois dormant","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP088003-bois-dormant","list_image":"https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 180 cm - 70,86 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 180 cm - 70,86 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bois dormant","description":"Wide width printed wallpapers, Bois dormant. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:14.588Z"}
+{"mfr_sku":"FP084001","pattern_name":"Botanique","color_name":"Automne","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP084001-fougeres-botaniques","list_image":"https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"PAPER","Composition":"52 % Sisa - 24 % Cotton - 16 % Viscose - 8 % Polyester","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 79 cm - 31,10 inch | Free match","Weight":"500 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Notes":"Raised pattern","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"F9979PPFREY46"},"width":"86 cm / 33,85 inch","composition":"52 % Sisa - 24 % Cotton - 16 % Viscose - 8 % Polyester","material":"PAPER","pattern_repeat":"H: 86 cm - 33,00 inch | V: 79 cm - 31,10 inch | Free match","weight":"500 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Botanique","description":"Straws and similar materials - Embroideries, Botanique. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/d95eaf02-73b7-4b93-bd28-ba2377968b31/73QMN1F0cLTRcg4cFPSv.webp","https://static.pierrefrey.com/uploads/product/packshots/7983cd6a-30c8-4ff9-8305-7a54b312908f/qDgfttBGB4MqoA9EIrtz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/d95eaf02-73b7-4b93-bd28-ba2377968b31/73QMN1F0cLTRcg4cFPSv.webp,https://static.pierrefrey.com/uploads/product/packshots/7983cd6a-30c8-4ff9-8305-7a54b312908f/qDgfttBGB4MqoA9EIrtz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:15.477Z"}
+{"mfr_sku":"FP094002","pattern_name":"Galla","color_name":"Rouge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP094002-galla","list_image":"https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 91 cm - 35,00 inch | V: 57 cm - 22,44 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 91 cm - 35,00 inch | V: 57 cm - 22,44 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Galla","description":"Wide width printed wallpapers, Galla. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:16.272Z"}
+{"mfr_sku":"FP104001","pattern_name":"Eldorado","color_name":"Verdure","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP104001-eldorado","list_image":"https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"OSNABURG","Composition":"100 % Vinyl","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 136 cm - 53,54 inch | Half drop repeat","Weight":"455 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY46"},"width":"129 cm / 50,78 inch","composition":"100 % Vinyl","material":"OSNABURG","pattern_repeat":"H: 129 cm - 50,00 inch | V: 136 cm - 53,54 inch | Half drop repeat","weight":"455 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Eldorado","description":"Wide width printed wallpapers - Vinyls, Eldorado. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/6a2c210d-edc8-45e4-8c88-a2484a423d0e/3aUWizUkWgGZlnITyR8j.webp","https://static.pierrefrey.com/uploads/product/packshots/006d12fd-08d3-4164-9b1b-796f0d8de548/HCHGKDcFv5qiysthFM5a.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/6a2c210d-edc8-45e4-8c88-a2484a423d0e/3aUWizUkWgGZlnITyR8j.webp,https://static.pierrefrey.com/uploads/product/packshots/006d12fd-08d3-4164-9b1b-796f0d8de548/HCHGKDcFv5qiysthFM5a.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:17.053Z"}
+{"mfr_sku":"FP103001","pattern_name":"Lotus","color_name":"Or","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP103001-lotus","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 99 cm - 38,97 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 99 cm - 38,97 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Lotus","description":"Wide width printed wallpapers, Lotus. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:17.895Z"}
+{"mfr_sku":"FP102001","pattern_name":"Nassau","color_name":"Agave","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP102001-nassau","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"130 cm / 51,18 inch","Repeat":"H: 130 cm - 51,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY46"},"width":"130 cm / 51,18 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 130 cm - 51,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nassau","description":"Wide width printed wallpapers - Paperbacked fabrics, Nassau. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:18.845Z"}
+{"mfr_sku":"FP098001","pattern_name":"Saint trop","color_name":"Mediterranee","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP098001-saint-trop","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Saint trop","description":"Wide width printed wallpapers, Saint trop. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:19.751Z"}
+{"mfr_sku":"FP086001","pattern_name":"Ferret","color_name":"Hiver","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP086001-feret","list_image":"https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 135 cm - 53,14 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 135 cm - 53,14 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ferret","description":"Wide width printed wallpapers, Ferret. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/d18256de-d52f-4805-bda9-aaba795dbee4/YypoZFG7uvvwpXhWDul5.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/d18256de-d52f-4805-bda9-aaba795dbee4/YypoZFG7uvvwpXhWDul5.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:20.597Z"}
+{"mfr_sku":"FP106002","pattern_name":"Hedera","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP106002-hedera","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L_335x251_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 63 cm - 24,80 inch | Half drop repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Book":"F9979PPFREY46"},"width":"86 cm / 33,85 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 86 cm - 33,00 inch | V: 63 cm - 24,80 inch | Half drop repeat","weight":"240 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Hedera","description":"Straws and similar materials - Printed wallpapers, Hedera. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/589a2d80-e5a2-4cff-88d4-0f7385881d06/E0J3CNcnTI96tUWtv5dl.webp","https://static.pierrefrey.com/uploads/product/packshots/61747607-150d-4f5a-b5f0-606cfb0170bc/RI51C6YfhN5NBhPMqVuw.webp","https://static.pierrefrey.com/uploads/product/packshots/c98f9ea8-8dc7-494d-895a-e3e348cde147/veZ70InVFrYjMZCIQozC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/589a2d80-e5a2-4cff-88d4-0f7385881d06/E0J3CNcnTI96tUWtv5dl.webp,https://static.pierrefrey.com/uploads/product/packshots/61747607-150d-4f5a-b5f0-606cfb0170bc/RI51C6YfhN5NBhPMqVuw.webp,https://static.pierrefrey.com/uploads/product/packshots/c98f9ea8-8dc7-494d-895a-e3e348cde147/veZ70InVFrYjMZCIQozC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:21.424Z"}
+{"mfr_sku":"FP089001","pattern_name":"Flore","color_name":"Fusain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP089001-flore","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Raphaël Schmitt","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 143 cm - 56,29 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 143 cm - 56,29 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Flore","description":"Wide width printed wallpapers, Flore. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/85d95368-a3fd-44f3-bcf5-e37cd4c4fe28/LY7eHMaEbM4OBkjuUeL2.webp","https://static.pierrefrey.com/uploads/product/packshots/31969e62-7f8a-4d31-93d9-ec685355e00b/SZI49yg7FoggLEZ1CTsv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/85d95368-a3fd-44f3-bcf5-e37cd4c4fe28/LY7eHMaEbM4OBkjuUeL2.webp,https://static.pierrefrey.com/uploads/product/packshots/31969e62-7f8a-4d31-93d9-ec685355e00b/SZI49yg7FoggLEZ1CTsv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:22.254Z"}
+{"mfr_sku":"FP086002","pattern_name":"Ferret","color_name":"Ete","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP086002-feret","list_image":"https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 135 cm - 53,14 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 135 cm - 53,14 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ferret","description":"Wide width printed wallpapers, Ferret. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/d18256de-d52f-4805-bda9-aaba795dbee4/YypoZFG7uvvwpXhWDul5.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/d18256de-d52f-4805-bda9-aaba795dbee4/YypoZFG7uvvwpXhWDul5.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:23.023Z"}
+{"mfr_sku":"FP099001","pattern_name":"Chance","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP099001-chance","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"H: 90 cm - 35,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"190 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","Book":"F9979PPFREY46"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"190 gr / m²","certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Chance","description":"Wide width printed wallpapers - Embossed patterns, Chance. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:23.916Z"}
+{"mfr_sku":"FP085001","pattern_name":"Rayure les pois de senteur","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP085001-provence","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 77 cm - 30,31 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY46"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 77 cm - 30,31 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Rayure les pois de senteur","description":"Wide width printed wallpapers, Rayure les pois de senteur. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp","https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp","https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp","https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp","https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp","https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp","https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp","https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp","https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp","https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp","https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp","https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp","https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp","https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp","https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp","https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp","https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp","https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp","https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp","https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp","https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp","https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp","https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp","https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp","https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp","https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp","https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp","https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp","https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp","https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp","https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp","https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp","https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp","https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp","https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp","https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp","https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp","https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp","https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp","https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp","https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp","https://static.pierrefrey.com/uploads/product/packshots/b9415a4f-157c-4ca7-9dae-7e8b8a4d3ba5/6CpkMNVDRlZcjLHmLaLD.webp","https://static.pierrefrey.com/uploads/product/packshots/2bab1ea2-fcc3-4189-916c-7fc798e3933f/FcbPykdcyYfxXTUSU814.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f7e1a18a-b6dc-4480-99fa-0c45c132d1e0/gKRyPOMqXS42SOHBldXB.webp,https://static.pierrefrey.com/uploads/product/packshots/f2551aa7-e1ad-4888-8909-7f9bb85a1ffa/KBmzE1StrkHTknK4ieH8.webp,https://static.pierrefrey.com/uploads/product/packshots/8a395dec-ed65-42d1-aa79-a034bdbb86f8/5vd1uJ5y8aa967PLKqQZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e6d21a51-ad43-407d-b81c-5515abf3588f/fRoo4S3VJD08phbb3HBq.webp,https://static.pierrefrey.com/uploads/product/packshots/c508fd24-f3e2-429f-9596-7342923bc200/zXxXM6nHfBZhcMGg70Ur.webp,https://static.pierrefrey.com/uploads/product/packshots/e34b6e26-fc23-4e61-86bf-dfe554fdcb55/I4ASW25STkQthIAhfBMB.webp,https://static.pierrefrey.com/uploads/product/packshots/bf4565f2-b8f0-4a1e-97f9-877f85a87df5/B812vLAonnl54pRCOWCN.webp,https://static.pierrefrey.com/uploads/product/packshots/38b27464-31f9-4933-9c08-a5d1c8d75377/q8XMpbQyVmdFympkzPmW.webp,https://static.pierrefrey.com/uploads/product/packshots/96828092-3454-4cfa-9092-1857e240a711/IloINhsvRwvrirTTYCgw.webp,https://static.pierrefrey.com/uploads/product/packshots/c8abfd22-3e53-46bf-96cb-60892117b252/ZAk7luh72c3wjGcC9lFW.webp,https://static.pierrefrey.com/uploads/product/packshots/db9ad962-aa70-452a-a354-c416d1da37cb/KmLIqkGOb99iho7phbcy.webp,https://static.pierrefrey.com/uploads/product/packshots/eb02bd60-654d-4339-ae91-f20ea0bc2aeb/75c0hIQyFRAGoaQQNSEh.webp,https://static.pierrefrey.com/uploads/product/packshots/e333a2da-540b-4a33-9269-a007335ea531/5tBVRxQMnAcwcfF4AEEV.webp,https://static.pierrefrey.com/uploads/product/packshots/215a05db-f0e1-416d-8fc5-f14bf8f2f2fa/zZj9Vsc7iXQTaFpeMJeU.webp,https://static.pierrefrey.com/uploads/product/packshots/c8826cf2-5466-4815-8d34-f442e5fadff6/qZibnRvj5noEfuoCApuc.webp,https://static.pierrefrey.com/uploads/product/packshots/ef75157f-c442-4bc9-9f15-5bb9940f4df1/X5AkZ7mkMekMReNmcYXW.webp,https://static.pierrefrey.com/uploads/product/packshots/4e60e386-dd37-4768-8ca8-6c14dc987560/ReuZNzCUYjHa0cC4095A.webp,https://static.pierrefrey.com/uploads/product/packshots/a43b108b-54eb-47b4-995d-6ea5478188c1/NVlv01E3OMfUvC6Fx0iB.webp,https://static.pierrefrey.com/uploads/product/packshots/ca1c29c2-68f9-4d6c-a9de-d202eee2cc7e/UzR2KcvSUCVGOnWwb1rA.webp,https://static.pierrefrey.com/uploads/product/packshots/793b5c8c-1de1-4373-8cee-656bf84427ef/EaqeRJqffTeLF8bbtJdQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c82b46e-bc14-4b9a-865b-eba100bd971a/ZNXRsmvMQkrYMxzdYE5b.webp,https://static.pierrefrey.com/uploads/product/packshots/b6f9b168-57f9-482a-bb39-209e1e27bd89/gsB0dhzJUuzscRPEExIU.webp,https://static.pierrefrey.com/uploads/product/packshots/c3e3ae78-2441-41c3-b861-574f433b89e3/oB8MvEo9Oj6TVyC0qtfu.webp,https://static.pierrefrey.com/uploads/product/packshots/010ad4aa-4cb1-46f0-85c7-45fcf934ab69/qKUMesQmeA6r0MRvpZBV.webp,https://static.pierrefrey.com/uploads/product/packshots/df4c6a50-1215-4e79-890b-9eb35ab03fe2/4inU4sqszHNlvpd2jYIh.webp,https://static.pierrefrey.com/uploads/product/packshots/5977e292-4d3c-47ab-8f46-c225b4855656/b5lnVz10Y66Qxd0I5Y5p.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb84b9f-9ac4-4be5-a891-4b2a9cee434b/BXSn2tL3nyRxxzNJFYGL.webp,https://static.pierrefrey.com/uploads/product/packshots/2449cb6b-f745-4427-b6d0-a5500419ffaf/wwH5lPCrMb9n7QbJfCLp.webp,https://static.pierrefrey.com/uploads/product/packshots/467614bf-69f7-4f57-80cc-f6d221360789/f1T7W1NF3S5E3MLwTdJP.webp,https://static.pierrefrey.com/uploads/product/packshots/25707f42-e0b8-46b4-a429-2411ad920982/4LeNF1mu7glOuE4bUUXK.webp,https://static.pierrefrey.com/uploads/product/packshots/93c6f55e-4bbc-4ca8-b4a6-a299ad771124/KTFZCQPU1LkddN4oUqD7.webp,https://static.pierrefrey.com/uploads/product/packshots/366321b3-0b87-4443-b87e-4ac4ebdddbc8/fXMx6UEmMEnYA3naAekd.webp,https://static.pierrefrey.com/uploads/product/packshots/db18fded-794f-469c-ac42-f19677be77d0/kYBFqDaN96RlFbNrSL9w.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd596fa-45b1-43f1-90ae-c614acff26f7/PcT0QzohNaVHZFYh5ZcG.webp,https://static.pierrefrey.com/uploads/product/packshots/efe8097d-e4eb-43ec-833d-51e60486df0f/pRxk1pfJObdSkfeydRvs.webp,https://static.pierrefrey.com/uploads/product/packshots/97035f64-b9b9-4548-b4f8-9abbd8ff07cf/mDbofIQ0f4GVJU5pdPeA.webp,https://static.pierrefrey.com/uploads/product/packshots/d618b9ad-2666-497a-b5bf-eda9d5fef405/uln7fRWQ0lNgyWZnbAvD.webp,https://static.pierrefrey.com/uploads/product/packshots/168acb2e-e145-4c40-ad44-ae252f40d291/kdKqO8DxvbOq8mpgfVLV.webp,https://static.pierrefrey.com/uploads/product/packshots/a528dd7a-7238-4637-b829-89dd095c1dfb/Fp7HHWJY7ct2btdPEgDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd74784-12d9-4374-9f45-7e4998e9501b/vsvOMHi9QuonL0sea62g.webp,https://static.pierrefrey.com/uploads/product/packshots/60bdab13-a6a1-4cf8-b46f-9354f9031e3c/S700P6MP5rgpmKRXvkL5.webp,https://static.pierrefrey.com/uploads/product/packshots/046271a8-c57c-435e-9416-c2d26d64999d/1MK6IL4rlhD4ZPS4mAxZ.webp,https://static.pierrefrey.com/uploads/product/packshots/008646f1-33cf-4e3e-ae26-4fb96c12ad4e/T4ID3ddkDLswYdGFY4Qc.webp,https://static.pierrefrey.com/uploads/product/packshots/5ac3a300-13b3-4c59-975a-ad1c3165ce44/r75itCN6BzDkepZOfGin.webp,https://static.pierrefrey.com/uploads/product/packshots/ed2192de-7aab-4ce8-b12b-362829ceb73e/4AXzz0JWYZtvWwLo963L.webp,https://static.pierrefrey.com/uploads/product/packshots/9bc302c4-5fd7-45b3-a526-37f9b4d67b06/aHSBaS7ai69bOccUZLAS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd3122b2-e729-4ee3-8594-75517d8eeba2/znhpEaaSmeVe9LQY7lqS.webp,https://static.pierrefrey.com/uploads/product/packshots/b9415a4f-157c-4ca7-9dae-7e8b8a4d3ba5/6CpkMNVDRlZcjLHmLaLD.webp,https://static.pierrefrey.com/uploads/product/packshots/2bab1ea2-fcc3-4189-916c-7fc798e3933f/FcbPykdcyYfxXTUSU814.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:24.769Z"}
+{"mfr_sku":"FP143001","pattern_name":"Paname","color_name":"Fp143001","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP143001-paname","list_image":"https://static.pierrefrey.com/uploads/product/packshots/162b7e67-5e52-4615-95da-7957e046105b/6EGjMFQNsa4jAxT2Fcl4_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"-","Width":"70 cm / 27,55 inch","Repeat":"H: 140 cm - 55,00 inch | V: 300 cm - 118,11 inch","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 2 panels"},"width":"70 cm / 27,55 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 300 cm - 118,11 inch","weight":"165 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per panel","roll_length":null,"collection":"Paname","description":"Printed wallpapers, Paname. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/162b7e67-5e52-4615-95da-7957e046105b/6EGjMFQNsa4jAxT2Fcl4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/162b7e67-5e52-4615-95da-7957e046105b/6EGjMFQNsa4jAxT2Fcl4.webp","https://static.pierrefrey.com/uploads/product/packshots/2bf7f8e8-22db-4aa2-a488-8d86d2d200bf/Bhb6nBCrznqm4leSplCf.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/162b7e67-5e52-4615-95da-7957e046105b/mv0CTTHeDodJIU2v7dFN.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/162b7e67-5e52-4615-95da-7957e046105b/6EGjMFQNsa4jAxT2Fcl4.webp,https://static.pierrefrey.com/uploads/product/packshots/2bf7f8e8-22db-4aa2-a488-8d86d2d200bf/Bhb6nBCrznqm4leSplCf.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/162b7e67-5e52-4615-95da-7957e046105b/mv0CTTHeDodJIU2v7dFN.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/162b7e67-5e52-4615-95da-7957e046105b/mv0CTTHeDodJIU2v7dFN.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:08:25.332Z"}
+{"mfr_sku":"TP454001","pattern_name":"Segolene","color_name":"Porcelain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/TP454001-segolene","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2af51206-8a2b-4f8e-b51a-6c2db6e745a9/BN4W0qCdKWZgvvanrWUT_335x251_webp.webp","specs":{"Type":"-","Technique":"-","Sales unit":"Available per meter/yard","Backing":"-","Ground Thorp of London":"TS030 - Susan Ivory","Composition":"100 % Non-woven","number of colors":"3","Colors":"A-// // | B-AUBERGINE 129 | C-PORCELAIN 361 | D-PORCELAIN 081","Width":"151 cm / 59,44 inch","Design Width":"125 cm / 49,21 inch","Repeat":"H: 41 cm - 16,14 inch | V: 77 cm - 30,31 inch","Weight":"-","Care":"-","Trimming":"-","Hanging / Removing":"-"},"width":"151 cm / 59,44 inch","composition":"100 % Non-woven","material":"-","pattern_repeat":"H: 41 cm - 16,14 inch | V: 77 cm - 30,31 inch","weight":"-","certifications":null,"sales_unit":null,"roll_length":null,"collection":"Segolene","description":", Segolene. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2af51206-8a2b-4f8e-b51a-6c2db6e745a9/BN4W0qCdKWZgvvanrWUT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2af51206-8a2b-4f8e-b51a-6c2db6e745a9/BN4W0qCdKWZgvvanrWUT.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/2af51206-8a2b-4f8e-b51a-6c2db6e745a9/BG5tngyOn6qQcnYlr2rs.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2af51206-8a2b-4f8e-b51a-6c2db6e745a9/BN4W0qCdKWZgvvanrWUT.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/2af51206-8a2b-4f8e-b51a-6c2db6e745a9/BG5tngyOn6qQcnYlr2rs.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/2af51206-8a2b-4f8e-b51a-6c2db6e745a9/BG5tngyOn6qQcnYlr2rs.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:08:25.972Z"}
+{"mfr_sku":"TP242002","pattern_name":"Pineapple leaf","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/TP242002-pineapple-leaf","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6ded2715-13ec-4c31-8724-8cb7f260d5d7/f2R2K5yBnqFNvqMyTB4G_335x251_webp.webp","specs":{"Type":"-","Technique":"-","Sales unit":"Available per meter/yard","Backing":"-","Ground Thorp of London":"TS030 - Susan Ivory","Composition":"100 % Non-woven","number of colors":"1","Colors":"A-CELADON 221","Width":"151 cm / 59,44 inch","Design Width":"124 cm / 48,81 inch","Repeat":"H: 12 cm - 4,72 inch | V: 16 cm - 6,29 inch","Weight":"-","Care":"-","Trimming":"-","Hanging / Removing":"-"},"width":"151 cm / 59,44 inch","composition":"100 % Non-woven","material":"-","pattern_repeat":"H: 12 cm - 4,72 inch | V: 16 cm - 6,29 inch","weight":"-","certifications":null,"sales_unit":null,"roll_length":null,"collection":"Pineapple leaf","description":", Pineapple leaf. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6ded2715-13ec-4c31-8724-8cb7f260d5d7/f2R2K5yBnqFNvqMyTB4G.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6ded2715-13ec-4c31-8724-8cb7f260d5d7/f2R2K5yBnqFNvqMyTB4G.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/6ded2715-13ec-4c31-8724-8cb7f260d5d7/3joi23pE4sMHoj5Sq2zV.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6ded2715-13ec-4c31-8724-8cb7f260d5d7/f2R2K5yBnqFNvqMyTB4G.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/6ded2715-13ec-4c31-8724-8cb7f260d5d7/3joi23pE4sMHoj5Sq2zV.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/6ded2715-13ec-4c31-8724-8cb7f260d5d7/3joi23pE4sMHoj5Sq2zV.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:08:26.621Z"}
+{"mfr_sku":"TP115004","pattern_name":"Vermicelli","color_name":"Artic","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/TP115004-vermicelli","list_image":"https://static.pierrefrey.com/uploads/product/packshots/de1daf19-99a1-4af1-9e9a-8d74c541ff1d/vJBFpInmuMrcBiqMgW1l_335x251_webp.webp","specs":{"Type":"Printed wallpapers","Technique":"-","Sales unit":"Available per meter/yard","Backing":"-","Ground Thorp of London":"TS030 - Susan Ivory","Composition":"100 % Non-woven","number of colors":"2","Colors":"A-ARTIC 312 | B-ARMOR 398","Width":"151 cm / 59,44 inch","Design Width":"122 cm / 48,03 inch","Repeat":"H: 40 cm - 15,74 inch | V: 32 cm - 12,59 inch","Weight":"-","Care":"-","Trimming":"-","Hanging / Removing":"-","Notes":"Hand screen printed"},"width":"151 cm / 59,44 inch","composition":"100 % Non-woven","material":"-","pattern_repeat":"H: 40 cm - 15,74 inch | V: 32 cm - 12,59 inch","weight":"-","certifications":null,"sales_unit":null,"roll_length":null,"collection":"Vermicelli","description":"Printed wallpapers, Vermicelli. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/de1daf19-99a1-4af1-9e9a-8d74c541ff1d/vJBFpInmuMrcBiqMgW1l.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/de1daf19-99a1-4af1-9e9a-8d74c541ff1d/vJBFpInmuMrcBiqMgW1l.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/de1daf19-99a1-4af1-9e9a-8d74c541ff1d/54fzKpFsVmI7oeUfYpNP.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/de1daf19-99a1-4af1-9e9a-8d74c541ff1d/vJBFpInmuMrcBiqMgW1l.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/de1daf19-99a1-4af1-9e9a-8d74c541ff1d/54fzKpFsVmI7oeUfYpNP.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/de1daf19-99a1-4af1-9e9a-8d74c541ff1d/54fzKpFsVmI7oeUfYpNP.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:08:27.356Z"}
+{"mfr_sku":"TP340001","pattern_name":"Antoinette","color_name":"Sevres","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/TP340001-antoinette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/df7465f7-de2b-444e-9bd8-f7df1ae46ba4/KG9rtLfoEogscp5KyZuN_335x251_webp.webp","specs":{"Type":"-","Technique":"-","Sales unit":"Available per meter/yard","Backing":"-","Ground Thorp of London":"TS030 - Susan Ivory","Composition":"100 % Non-woven","number of colors":"2","Colors":"A-THYME 213 | B-SEVRES 206","Width":"151 cm / 59,44 inch","Design Width":"121 cm / 47,63 inch","Repeat":"H: 30 cm - 11,81 inch | V: 40 cm - 15,74 inch","Weight":"-","Care":"-","Trimming":"-","Hanging / Removing":"-"},"width":"151 cm / 59,44 inch","composition":"100 % Non-woven","material":"-","pattern_repeat":"H: 30 cm - 11,81 inch | V: 40 cm - 15,74 inch","weight":"-","certifications":null,"sales_unit":null,"roll_length":null,"collection":"Antoinette","description":", Antoinette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/df7465f7-de2b-444e-9bd8-f7df1ae46ba4/KG9rtLfoEogscp5KyZuN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/df7465f7-de2b-444e-9bd8-f7df1ae46ba4/KG9rtLfoEogscp5KyZuN.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/df7465f7-de2b-444e-9bd8-f7df1ae46ba4/FBhCQyaiccDR3bfAr04S.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/df7465f7-de2b-444e-9bd8-f7df1ae46ba4/KG9rtLfoEogscp5KyZuN.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/df7465f7-de2b-444e-9bd8-f7df1ae46ba4/FBhCQyaiccDR3bfAr04S.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/df7465f7-de2b-444e-9bd8-f7df1ae46ba4/FBhCQyaiccDR3bfAr04S.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:08:28.087Z"}
+{"mfr_sku":"TP601002","pattern_name":"Luna","color_name":"Saxe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/TP601002-luna","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e6ce76da-9ce1-41f6-8245-8b754ca4c3f5/Es6v6OcWjKr3hIcoi802_335x251_webp.webp","specs":{"Type":"-","Technique":"-","Sales unit":"Available per meter/yard","Backing":"-","Ground Thorp of London":"TS030 - Susan Ivory","Composition":"100 % Non-woven","Colors":"A- 012 | B- 033","Width":"151 cm / 59,44 inch","Design Width":"124 cm / 48,81 inch","Repeat":"H: 12 cm - 4,72 inch | V: 12 cm - 4,72 inch","Weight":"-","Care":"-","Trimming":"-","Hanging / Removing":"-","number of colors":"-"},"width":"151 cm / 59,44 inch","composition":"100 % Non-woven","material":"-","pattern_repeat":"H: 12 cm - 4,72 inch | V: 12 cm - 4,72 inch","weight":"-","certifications":null,"sales_unit":null,"roll_length":null,"collection":"Luna","description":", Luna. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e6ce76da-9ce1-41f6-8245-8b754ca4c3f5/Es6v6OcWjKr3hIcoi802.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e6ce76da-9ce1-41f6-8245-8b754ca4c3f5/Es6v6OcWjKr3hIcoi802.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/e6ce76da-9ce1-41f6-8245-8b754ca4c3f5/Sm0Cdy9RMtI01DqdrZSW.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e6ce76da-9ce1-41f6-8245-8b754ca4c3f5/Es6v6OcWjKr3hIcoi802.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/e6ce76da-9ce1-41f6-8245-8b754ca4c3f5/Sm0Cdy9RMtI01DqdrZSW.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/e6ce76da-9ce1-41f6-8245-8b754ca4c3f5/Sm0Cdy9RMtI01DqdrZSW.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:08:28.646Z"}
+{"mfr_sku":"FP082001","pattern_name":"Au palais grand","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP082001-au-palais-grand","list_image":"https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 169 cm - 66,53 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY44"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 169 cm - 66,53 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Au palais grand","description":"Wide width printed wallpapers, Au palais grand. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:29.542Z"}
+{"mfr_sku":"FP081002","pattern_name":"Aelys metal","color_name":"Argent","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP081002-aelys-metal","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"65 % Silk - 35 % metallised yarn Lurex","Width":"86 cm / 33,85 inch","Repeat":"H: 43 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY43"},"width":"86 cm / 33,85 inch","composition":"65 % Silk - 35 % metallised yarn Lurex","material":"NON WOVEN","pattern_repeat":"H: 43 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Aelys metal","description":"Paperbacked fabrics - Printed wallpapers, Aelys metal. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:30.446Z"}
+{"mfr_sku":"FP045002","pattern_name":"Qinghua petit","color_name":"Nacre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP045002-qinghua","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 39 cm - 15,35 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY44"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 39 cm - 15,35 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Qinghua petit","description":"Wide width printed wallpapers, Qinghua petit. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","https://static.pierrefrey.com/uploads/product/packshots/9fcd2f1c-14dd-42d8-941c-f54813cac5b7/E96a1dwOevkd6LF8Zq33.webp","https://static.pierrefrey.com/uploads/product/packshots/3fda80cc-ec01-4cc2-86b7-2b2ea8b83b1d/tTcABipYYo6YFcNAY7hP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp,https://static.pierrefrey.com/uploads/product/packshots/9fcd2f1c-14dd-42d8-941c-f54813cac5b7/E96a1dwOevkd6LF8Zq33.webp,https://static.pierrefrey.com/uploads/product/packshots/3fda80cc-ec01-4cc2-86b7-2b2ea8b83b1d/tTcABipYYo6YFcNAY7hP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:31.389Z"}
+{"mfr_sku":"FP080002","pattern_name":"Qinghua grand","color_name":"Bleu De Chine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP080002-qinghua-grand","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 78 cm - 30,70 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY44"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 78 cm - 30,70 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Qinghua grand","description":"Wide width printed wallpapers, Qinghua grand. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","https://static.pierrefrey.com/uploads/product/packshots/9fcd2f1c-14dd-42d8-941c-f54813cac5b7/E96a1dwOevkd6LF8Zq33.webp","https://static.pierrefrey.com/uploads/product/packshots/3fda80cc-ec01-4cc2-86b7-2b2ea8b83b1d/tTcABipYYo6YFcNAY7hP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp,https://static.pierrefrey.com/uploads/product/packshots/9fcd2f1c-14dd-42d8-941c-f54813cac5b7/E96a1dwOevkd6LF8Zq33.webp,https://static.pierrefrey.com/uploads/product/packshots/3fda80cc-ec01-4cc2-86b7-2b2ea8b83b1d/tTcABipYYo6YFcNAY7hP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:32.428Z"}
+{"mfr_sku":"FP080001","pattern_name":"Qinghua grand","color_name":"Neige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP080001-qinghua-grand","list_image":"https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 78 cm - 30,70 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY44"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 78 cm - 30,70 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Qinghua grand","description":"Wide width printed wallpapers, Qinghua grand. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","https://static.pierrefrey.com/uploads/product/packshots/9fcd2f1c-14dd-42d8-941c-f54813cac5b7/E96a1dwOevkd6LF8Zq33.webp","https://static.pierrefrey.com/uploads/product/packshots/3fda80cc-ec01-4cc2-86b7-2b2ea8b83b1d/tTcABipYYo6YFcNAY7hP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp,https://static.pierrefrey.com/uploads/product/packshots/9fcd2f1c-14dd-42d8-941c-f54813cac5b7/E96a1dwOevkd6LF8Zq33.webp,https://static.pierrefrey.com/uploads/product/packshots/3fda80cc-ec01-4cc2-86b7-2b2ea8b83b1d/tTcABipYYo6YFcNAY7hP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:33.326Z"}
+{"mfr_sku":"FP063002","pattern_name":"Segou","color_name":"Fusain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP063002-segou","list_image":"https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Ecole Ndomo","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 109 cm - 42,91 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY45"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 109 cm - 42,91 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Segou","description":"Wide width printed wallpapers, Segou. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/7392513b-76cb-44bd-b8f3-d3b45f62e36d/3EEsLFey8JCh0YsdpiR7.webp","https://static.pierrefrey.com/uploads/product/packshots/be9c6af1-1dcb-42a7-9e38-a05f92dd94bc/9Y0GxsMNgl2lSPSGd4US.webp","https://static.pierrefrey.com/uploads/product/packshots/8d791568-42c2-446c-b9e6-0ff3ca4cad57/NvL28dSIPq6eYjal8ozX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/7392513b-76cb-44bd-b8f3-d3b45f62e36d/3EEsLFey8JCh0YsdpiR7.webp,https://static.pierrefrey.com/uploads/product/packshots/be9c6af1-1dcb-42a7-9e38-a05f92dd94bc/9Y0GxsMNgl2lSPSGd4US.webp,https://static.pierrefrey.com/uploads/product/packshots/8d791568-42c2-446c-b9e6-0ff3ca4cad57/NvL28dSIPq6eYjal8ozX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:34.104Z"}
+{"mfr_sku":"FP060001","pattern_name":"Conte merveilleux","color_name":"Or","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP060001-conte-merveilleux","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Conte merveilleux","description":"Wide width printed wallpapers, Conte merveilleux. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:34.882Z"}
+{"mfr_sku":"FP060002","pattern_name":"Conte merveilleux","color_name":"Neige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP060002-conte-merveilleux","list_image":"https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Conte merveilleux","description":"Wide width printed wallpapers, Conte merveilleux. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:35.833Z"}
+{"mfr_sku":"FP077002","pattern_name":"Grande maree","color_name":"Lagon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP077002-grande-maree","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 136 cm - 53,00 inch | V: 81 cm - 31,88 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY45"},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 136 cm - 53,00 inch | V: 81 cm - 31,88 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Grande maree","description":"Wide width printed wallpapers, Grande maree. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:36.685Z"}
+{"mfr_sku":"FP077001","pattern_name":"Grande maree","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP077001-grande-maree","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 136 cm - 53,00 inch | V: 81 cm - 31,88 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY45"},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 136 cm - 53,00 inch | V: 81 cm - 31,88 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Grande maree","description":"Wide width printed wallpapers, Grande maree. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:37.609Z"}
+{"mfr_sku":"FP077003","pattern_name":"Grande maree","color_name":"Charbon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP077003-grande-maree","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 136 cm - 53,00 inch | V: 81 cm - 31,88 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY45"},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 136 cm - 53,00 inch | V: 81 cm - 31,88 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Grande maree","description":"Wide width printed wallpapers, Grande maree. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:38.506Z"}
+{"mfr_sku":"FP054003","pattern_name":"Au palais petit","color_name":"Ruisseau","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP054003-au-palais","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 98 cm - 38,00 inch | V: 123 cm - 48,42 inch | Straight repeat","Weight":"420 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 98 cm - 38,00 inch | V: 123 cm - 48,42 inch | Straight repeat","weight":"420 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Au palais petit","description":"Vinyls - Printed wallpapers, Au palais petit. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:39.366Z"}
+{"mfr_sku":"FP045001","pattern_name":"Qinghua petit","color_name":"Indigo","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP045001-qinghua","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 39 cm - 15,35 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY44"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 39 cm - 15,35 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Qinghua petit","description":"Wide width printed wallpapers, Qinghua petit. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","https://static.pierrefrey.com/uploads/product/packshots/9fcd2f1c-14dd-42d8-941c-f54813cac5b7/E96a1dwOevkd6LF8Zq33.webp","https://static.pierrefrey.com/uploads/product/packshots/3fda80cc-ec01-4cc2-86b7-2b2ea8b83b1d/tTcABipYYo6YFcNAY7hP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp,https://static.pierrefrey.com/uploads/product/packshots/9fcd2f1c-14dd-42d8-941c-f54813cac5b7/E96a1dwOevkd6LF8Zq33.webp,https://static.pierrefrey.com/uploads/product/packshots/3fda80cc-ec01-4cc2-86b7-2b2ea8b83b1d/tTcABipYYo6YFcNAY7hP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:40.268Z"}
+{"mfr_sku":"FP079002","pattern_name":"Sokone","color_name":"Savane","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP079002-sokone","list_image":"https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Noëmie Vallerand","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 118 cm - 46,45 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY45"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 118 cm - 46,45 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sokone","description":"Wide width printed wallpapers, Sokone. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/105b07a9-c62c-4904-8a77-7275609cb559/pKA6fDdw5RvSMv6QRDmT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/105b07a9-c62c-4904-8a77-7275609cb559/pKA6fDdw5RvSMv6QRDmT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:41.083Z"}
+{"mfr_sku":"FP079001","pattern_name":"Sokone","color_name":"Jungle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP079001-sokone","list_image":"https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Noëmie Vallerand","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 118 cm - 46,45 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY45"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 118 cm - 46,45 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sokone","description":"Wide width printed wallpapers, Sokone. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/105b07a9-c62c-4904-8a77-7275609cb559/pKA6fDdw5RvSMv6QRDmT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/105b07a9-c62c-4904-8a77-7275609cb559/pKA6fDdw5RvSMv6QRDmT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:41.875Z"}
+{"mfr_sku":"FP062001","pattern_name":"Efutu","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP062001-efutu","list_image":"https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"74 % Polyester - 26 % Polyamide","Width":"139 cm / 54,72 inch","Repeat":"H: 139 cm - 54,00 inch | V: 137 cm - 53,93 inch | Straight repeat","Weight":"490 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY45"},"width":"139 cm / 54,72 inch","composition":"74 % Polyester - 26 % Polyamide","material":"NON WOVEN","pattern_repeat":"H: 139 cm - 54,00 inch | V: 137 cm - 53,93 inch | Straight repeat","weight":"490 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Efutu","description":"Paperbacked fabrics - Straws and similar materials, Efutu. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/6d65f6f7-92ac-4e68-a812-03567bb3afe0/zuN8UmINplb7KnF9NDYi.webp","https://static.pierrefrey.com/uploads/product/packshots/5c1fe7bd-3e7d-44bd-9a59-ebd2746f245a/ksBSGGYAedqUJFwFTmAd.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/6d65f6f7-92ac-4e68-a812-03567bb3afe0/zuN8UmINplb7KnF9NDYi.webp,https://static.pierrefrey.com/uploads/product/packshots/5c1fe7bd-3e7d-44bd-9a59-ebd2746f245a/ksBSGGYAedqUJFwFTmAd.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:42.798Z"}
+{"mfr_sku":"FP062002","pattern_name":"Efutu","color_name":"Cacao","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP062002-efutu","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"74 % Polyester - 26 % Polyamide","Width":"139 cm / 54,72 inch","Repeat":"H: 139 cm - 54,00 inch | V: 137 cm - 53,93 inch | Straight repeat","Weight":"490 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY45"},"width":"139 cm / 54,72 inch","composition":"74 % Polyester - 26 % Polyamide","material":"NON WOVEN","pattern_repeat":"H: 139 cm - 54,00 inch | V: 137 cm - 53,93 inch | Straight repeat","weight":"490 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Efutu","description":"Paperbacked fabrics - Straws and similar materials, Efutu. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/6d65f6f7-92ac-4e68-a812-03567bb3afe0/zuN8UmINplb7KnF9NDYi.webp","https://static.pierrefrey.com/uploads/product/packshots/5c1fe7bd-3e7d-44bd-9a59-ebd2746f245a/ksBSGGYAedqUJFwFTmAd.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/6d65f6f7-92ac-4e68-a812-03567bb3afe0/zuN8UmINplb7KnF9NDYi.webp,https://static.pierrefrey.com/uploads/product/packshots/5c1fe7bd-3e7d-44bd-9a59-ebd2746f245a/ksBSGGYAedqUJFwFTmAd.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:43.529Z"}
+{"mfr_sku":"FP059002","pattern_name":"Belle lune","color_name":"Nuit","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP059002-belle-lune","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Elisa Defossez","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"139 cm / 54,72 inch","Repeat":"H: 139 cm - 54,00 inch | V: 72 cm - 28,34 inch | Straight repeat","Weight":"130 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY44"},"width":"139 cm / 54,72 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 139 cm - 54,00 inch | V: 72 cm - 28,34 inch | Straight repeat","weight":"130 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Belle lune","description":"Wide width printed wallpapers, Belle lune. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:44.321Z"}
+{"mfr_sku":"FP058002","pattern_name":"Kaori","color_name":"Argile","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP058002-kaori","list_image":"https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 117 cm - 46,06 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY44"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 117 cm - 46,06 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Kaori","description":"Wide width printed wallpapers, Kaori. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:45.307Z"}
+{"mfr_sku":"FP058001","pattern_name":"Kaori","color_name":"Indigo","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP058001-kaori","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 117 cm - 46,06 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY44"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 117 cm - 46,06 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Kaori","description":"Wide width printed wallpapers, Kaori. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:46.361Z"}
+{"mfr_sku":"FP049003","pattern_name":"Suki","color_name":"Ocean","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP049003-suki","list_image":"https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 70 cm - 27,00 inch | V: 47 cm - 18,50 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY44"},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 47 cm - 18,50 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Suki","description":"Wide width printed wallpapers, Suki. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","https://static.pierrefrey.com/uploads/product/packshots/30b50215-dbc4-4f3c-a0db-273722e27730/bzndcOGYtbdPrnGyYGlk.webp","https://static.pierrefrey.com/uploads/product/packshots/fccb3663-8408-42bf-b116-18020f2bb9d5/mLedhs6paBdBRtuvNXVd.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp,https://static.pierrefrey.com/uploads/product/packshots/30b50215-dbc4-4f3c-a0db-273722e27730/bzndcOGYtbdPrnGyYGlk.webp,https://static.pierrefrey.com/uploads/product/packshots/fccb3663-8408-42bf-b116-18020f2bb9d5/mLedhs6paBdBRtuvNXVd.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:47.147Z"}
+{"mfr_sku":"FP048004","pattern_name":"Les eventails","color_name":"Or","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP048004-les-eventails","list_image":"https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 70 cm - 27,55 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY44"},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 70 cm - 27,55 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les eventails","description":"Wide width printed wallpapers, Les eventails. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:47.918Z"}
+{"mfr_sku":"FP068001","pattern_name":"Baya","color_name":"Argile","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP068001-baya","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 88 cm - 34,64 inch | Offset repeat 1/4","Weight":"185 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY45"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 88 cm - 34,64 inch | Offset repeat 1/4","weight":"185 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Baya","description":"Wide width printed wallpapers - Embossed patterns, Baya. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:48.762Z"}
+{"mfr_sku":"FP048003","pattern_name":"Les eventails","color_name":"Coquelicot","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP048003-les-eventails","list_image":"https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 70 cm - 27,55 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY44"},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 70 cm - 27,55 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les eventails","description":"Wide width printed wallpapers, Les eventails. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:49.679Z"}
+{"mfr_sku":"FP048002","pattern_name":"Les eventails","color_name":"Indigo","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP048002-les-eventails","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 70 cm - 27,55 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY44"},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 70 cm - 27,55 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les eventails","description":"Wide width printed wallpapers, Les eventails. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:50.535Z"}
+{"mfr_sku":"FP068002","pattern_name":"Baya","color_name":"Feu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP068002-baya","list_image":"https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 88 cm - 34,64 inch | Offset repeat 1/4","Weight":"185 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY45"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 88 cm - 34,64 inch | Offset repeat 1/4","weight":"185 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Baya","description":"Wide width printed wallpapers - Embossed patterns, Baya. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:51.490Z"}
+{"mfr_sku":"FP048001","pattern_name":"Les eventails","color_name":"Herbe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP048001-les-eventails","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 70 cm - 27,55 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY44"},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 70 cm - 27,55 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les eventails","description":"Wide width printed wallpapers, Les eventails. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:52.396Z"}
+{"mfr_sku":"FP049002","pattern_name":"Suki","color_name":"Epice","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP049002-suki","list_image":"https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 70 cm - 27,00 inch | V: 47 cm - 18,50 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY44"},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 47 cm - 18,50 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Suki","description":"Wide width printed wallpapers, Suki. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","https://static.pierrefrey.com/uploads/product/packshots/30b50215-dbc4-4f3c-a0db-273722e27730/bzndcOGYtbdPrnGyYGlk.webp","https://static.pierrefrey.com/uploads/product/packshots/fccb3663-8408-42bf-b116-18020f2bb9d5/mLedhs6paBdBRtuvNXVd.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp,https://static.pierrefrey.com/uploads/product/packshots/30b50215-dbc4-4f3c-a0db-273722e27730/bzndcOGYtbdPrnGyYGlk.webp,https://static.pierrefrey.com/uploads/product/packshots/fccb3663-8408-42bf-b116-18020f2bb9d5/mLedhs6paBdBRtuvNXVd.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:53.213Z"}
+{"mfr_sku":"FP059001","pattern_name":"Belle lune","color_name":"Eclipse","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP059001-belle-lune","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Elisa Defossez","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"139 cm / 54,72 inch","Repeat":"H: 139 cm - 54,00 inch | V: 72 cm - 28,34 inch | Straight repeat","Weight":"130 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY44"},"width":"139 cm / 54,72 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 139 cm - 54,00 inch | V: 72 cm - 28,34 inch | Straight repeat","weight":"130 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Belle lune","description":"Wide width printed wallpapers, Belle lune. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:54.104Z"}
+{"mfr_sku":"FP049001","pattern_name":"Suki","color_name":"Galet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP049001-suki","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 70 cm - 27,00 inch | V: 47 cm - 18,50 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY44"},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 47 cm - 18,50 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Suki","description":"Wide width printed wallpapers, Suki. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","https://static.pierrefrey.com/uploads/product/packshots/30b50215-dbc4-4f3c-a0db-273722e27730/bzndcOGYtbdPrnGyYGlk.webp","https://static.pierrefrey.com/uploads/product/packshots/fccb3663-8408-42bf-b116-18020f2bb9d5/mLedhs6paBdBRtuvNXVd.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp,https://static.pierrefrey.com/uploads/product/packshots/30b50215-dbc4-4f3c-a0db-273722e27730/bzndcOGYtbdPrnGyYGlk.webp,https://static.pierrefrey.com/uploads/product/packshots/fccb3663-8408-42bf-b116-18020f2bb9d5/mLedhs6paBdBRtuvNXVd.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:54.959Z"}
+{"mfr_sku":"FP034003","pattern_name":"Yelena","color_name":"Miel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP034003-yelena","list_image":"https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 136 cm - 53,00 inch | V: 117 cm - 46,06 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY43"},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 136 cm - 53,00 inch | V: 117 cm - 46,06 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Yelena","description":"Wide width printed wallpapers, Yelena. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:55.883Z"}
+{"mfr_sku":"FP936003","pattern_name":"Sven","color_name":"Galet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP936003-sven","list_image":"https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"H: 90 cm - 35,00 inch | V: 32 cm - 12,59 inch | Straight repeat","Weight":"248 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique | Raised pattern","Book":"F9979PPFREY36"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 32 cm - 12,59 inch | Straight repeat","weight":"248 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sven","description":"Wide width printed wallpapers - Embossed patterns, Sven. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:56.689Z"}
+{"mfr_sku":"FP920001","pattern_name":"Inga","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP920001-inga","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"63 % Linen - 36 % Cotton - 1 % Polyamide","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"410 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"63 % Linen - 36 % Cotton - 1 % Polyamide","material":"NON WOVEN","pattern_repeat":"Free match","weight":"410 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Inga","description":"Plains & semi plains - Paperbacked fabrics, Inga. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:57.458Z"}
+{"mfr_sku":"W4671A01","pattern_name":"Wallpaper chateaubriand","color_name":"Cream","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4671A01-wallpaper-chateaubriand","list_image":"https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 103 cm - 40,55 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 103 cm - 40,55 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper chateaubriand","description":"Small width printed wallpapers, Wallpaper chateaubriand. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:58.346Z"}
+{"mfr_sku":"LP109003","pattern_name":"Hankeou","color_name":"Rose","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP109003-hankeou","list_image":"https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  3,66 mts","Backing":"PAPER","Composition":"-","Width":"91 cm / 35,82 inch","Repeat":"H: 92 cm - 36,00 inch | V: 111 cm - 43,70 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"91 cm / 35,82 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 92 cm - 36,00 inch | V: 111 cm - 43,70 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  3,66 mts","roll_length":null,"collection":"Hankeou","description":"Small width printed wallpapers, Hankeou. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:08:59.271Z"}
+{"mfr_sku":"FP072001","pattern_name":"L'aurore","color_name":"Blond","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP072001-laurore","list_image":"https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 147 cm - 57,87 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY45"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 147 cm - 57,87 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"L'aurore","description":"Wide width printed wallpapers, L'aurore. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:00.154Z"}
+{"mfr_sku":"FP871002","pattern_name":"Les modeles","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP871002-les-modeles","list_image":"https://static.pierrefrey.com/uploads/product/packshots/013c67e9-f55b-4bd3-96ab-fb9dfe101d67/KfQ9sF5F58ZwZJbAsAFx_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Fanny Kummin","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 101 cm - 39,76 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY33"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 101 cm - 39,76 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les modeles","description":"Wide width printed wallpapers, Les modeles. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/013c67e9-f55b-4bd3-96ab-fb9dfe101d67/KfQ9sF5F58ZwZJbAsAFx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/013c67e9-f55b-4bd3-96ab-fb9dfe101d67/KfQ9sF5F58ZwZJbAsAFx.webp","https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/013c67e9-f55b-4bd3-96ab-fb9dfe101d67/KfQ9sF5F58ZwZJbAsAFx.webp,https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp,https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:00.844Z"}
+{"mfr_sku":"W4764003","pattern_name":"Wallpaper dandy","color_name":"Blue","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4764003-wallpaper-dandy","list_image":"https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 63 cm - 24,80 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 63 cm - 24,80 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper dandy","description":"Small width printed wallpapers, Wallpaper dandy. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:02.006Z"}
+{"mfr_sku":"FP891004","pattern_name":"Papyrus","color_name":"Noir","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP891004-papyrus","list_image":"https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Raffia","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"242 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Book":"F9979PPFREY32 | F9979PPFREY37"},"width":"87 cm / 34,25 inch","composition":"100 % Raffia","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"242 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Papyrus","description":"Small width printed wallpapers - Straws and similar materials, Papyrus. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp","https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp","https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp","https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp","https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp,https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp,https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp,https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp,https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:03.228Z"}
+{"mfr_sku":"FP499004","pattern_name":"Tatoo","color_name":"Noir","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP499004-tatoo","list_image":"https://static.pierrefrey.com/uploads/product/packshots/02110ee8-5add-445a-bda4-3be89901889c/4Yl8S2ZtVamRJF8CzRB1_251x335_webp.webp","specs":{"Type":"End-on-end threads - Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Viscose","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 24 cm - 9,44 inch | Straight repeat","Weight":"260 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY14"},"width":"52 cm / 20,47 inch","composition":"100 % Viscose","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 24 cm - 9,44 inch | Straight repeat","weight":"260 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tatoo","description":"End-on-end threads - Small width printed wallpapers, Tatoo. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/02110ee8-5add-445a-bda4-3be89901889c/4Yl8S2ZtVamRJF8CzRB1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/02110ee8-5add-445a-bda4-3be89901889c/4Yl8S2ZtVamRJF8CzRB1.webp","https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb.webp","https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd.webp","https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ.webp","https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp.webp","https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/02110ee8-5add-445a-bda4-3be89901889c/4Yl8S2ZtVamRJF8CzRB1.webp,https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb.webp,https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd.webp,https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ.webp,https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp.webp,https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:03.898Z"}
+{"mfr_sku":"BP371001","pattern_name":"Scene de campagne","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP371001-scene-de-campagne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 82 cm - 32,28 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"B9979PPBRAQ9"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 82 cm - 32,28 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Scene de campagne","description":"Wide width printed wallpapers, Scene de campagne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/f2c58b1a-505f-435b-9db8-d51a9199257d/NtWDt2sjldppEtUq7F3d.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/f2c58b1a-505f-435b-9db8-d51a9199257d/NtWDt2sjldppEtUq7F3d.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:05.428Z"}
+{"mfr_sku":"BP334007","pattern_name":"Shiva","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334007-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:06.330Z"}
+{"mfr_sku":"FP051002","pattern_name":"Les fleurs de cerisiers","color_name":"Nuage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP051002-les-fleurs-de-cerisiers","list_image":"https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"85 cm / 33,46 inch","Repeat":"H: 85 cm - 33,00 inch | V: 63 cm - 24,80 inch | Straight repeat","Weight":"250 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Raised pattern"},"width":"85 cm / 33,46 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 85 cm - 33,00 inch | V: 63 cm - 24,80 inch | Straight repeat","weight":"250 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les fleurs de cerisiers","description":"Printed wallpapers, Les fleurs de cerisiers. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:07.125Z"}
+{"mfr_sku":"FP983003","pattern_name":"Tamatoa","color_name":"Cacao","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP983003-tamatoa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"72 % Polyester - 28 % Polyamide","Width":"139 cm / 54,72 inch","Repeat":"H: 69 cm - 27,00 inch | V: 102 cm - 40,15 inch | Straight repeat","Weight":"509 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect"},"width":"139 cm / 54,72 inch","composition":"72 % Polyester - 28 % Polyamide","material":"NON WOVEN","pattern_repeat":"H: 69 cm - 27,00 inch | V: 102 cm - 40,15 inch | Straight repeat","weight":"509 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tamatoa","description":"Paperbacked fabrics - Straws and similar materials, Tamatoa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:07.791Z"}
+{"mfr_sku":"BP314001","pattern_name":"La grande voliere","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP314001-la-grande-voliere","list_image":"https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 68 cm - 26,00 inch | V: 58 cm - 22,83 inch | Straight repeat","Weight":"209 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Notes":"Good lightfastness","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 58 cm - 22,83 inch | Straight repeat","weight":"209 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La grande voliere","description":"Wide width printed wallpapers, La grande voliere. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp","https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp","https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp","https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp","https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp","https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp","https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp","https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp,https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp,https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp,https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp,https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp,https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp,https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp,https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:08.613Z"}
+{"mfr_sku":"FP963003","pattern_name":"Oboshi","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP963003-oboshi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 98 cm - 38,00 inch | V: 84 cm - 33,07 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 98 cm - 38,00 inch | V: 84 cm - 33,07 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Oboshi","description":"Wide width printed wallpapers - Vinyls, Oboshi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:09.507Z"}
+{"mfr_sku":"FP516001","pattern_name":"Karma","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP516001-karma","list_image":"https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Panoramic wallpapers","Sales Unit":"Full panoramic  340 cm x 300 cm ( 5 lengths  68 cm x 300 cm) - 133,85 in x 118,11 in( 5 lengths  26,77 in x 118,11 in)","Backing":"PAPER","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 340 cm - 133,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"289 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Dry strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 5 panels"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"PAPER","pattern_repeat":"H: 340 cm - 133,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"289 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  340 cm x 300 cm ( 5 lengths  68 cm x 300 cm) - 133,85 in x 118,11 in( 5 lengths  26,77 in x 118,11 in)","roll_length":null,"collection":"Karma","description":"Small width printed wallpapers - Vinyls - Panoramic wallpapers, Karma. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8.webp","https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct.webp","https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI.webp","https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT.webp","https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM.webp","https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/03458697-0474-422d-877c-520246ba4d50/rOwDt7zv1wgx4pqHdBCI.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8.webp,https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct.webp,https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI.webp,https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT.webp,https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM.webp,https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/03458697-0474-422d-877c-520246ba4d50/rOwDt7zv1wgx4pqHdBCI.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/03458697-0474-422d-877c-520246ba4d50/rOwDt7zv1wgx4pqHdBCI.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:09:10.270Z"}
+{"mfr_sku":"LP112003","pattern_name":"Mikado","color_name":"Aqua","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP112003-mikado","list_image":"https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 62 cm - 24,40 inch | Half drop repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 68 cm - 26,00 inch | V: 62 cm - 24,40 inch | Half drop repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Mikado","description":"Small width printed wallpapers, Mikado. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/006a3921-ada9-4ac6-8d48-41e2d1ca2f5b/0qvlxJpyv5WqkG61uiNL.webp","https://static.pierrefrey.com/uploads/product/packshots/8b671afe-9d3d-454b-85a0-6e457ba788fa/I5jzTEWn7HrYf3Cws9CC.webp","https://static.pierrefrey.com/uploads/product/packshots/c2fa8d49-ccd4-4d25-a6bd-697b9687ce67/11UHwvh0gQj7y6tIrFnk.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/006a3921-ada9-4ac6-8d48-41e2d1ca2f5b/0qvlxJpyv5WqkG61uiNL.webp,https://static.pierrefrey.com/uploads/product/packshots/8b671afe-9d3d-454b-85a0-6e457ba788fa/I5jzTEWn7HrYf3Cws9CC.webp,https://static.pierrefrey.com/uploads/product/packshots/c2fa8d49-ccd4-4d25-a6bd-697b9687ce67/11UHwvh0gQj7y6tIrFnk.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:11.196Z"}
+{"mfr_sku":"LP108004","pattern_name":"Plumettes","color_name":"CéLadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP108004-plumettes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,10 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 22 cm - 8,00 inch | V: 16 cm - 6,29 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Soaking time before hanging: maximum 2 minutes.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 22 cm - 8,00 inch | V: 16 cm - 6,29 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,10 mts","roll_length":null,"collection":"Plumettes","description":"Small width printed wallpapers, Plumettes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/e7a711a7-a131-4f19-883b-92d4e3f32211/3wIYH3A0eoIi2ZS1cGMD.webp","https://static.pierrefrey.com/uploads/product/packshots/5b165095-ee1f-4680-a8bd-7c8b35ac81a4/y8FDTMAyyPm72A3nBx9R.webp","https://static.pierrefrey.com/uploads/product/packshots/69cd0d72-253c-4f75-85b8-e96f860e885d/p6zYvoHDyn9UX8A7BXsJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8346139f-52a5-4f65-832d-df894dde42cf/7U9DSjPeQxYW2afTiZtd.webp","https://static.pierrefrey.com/uploads/product/packshots/f29f25c3-55c9-4bf5-939a-a7268dd85aec/KSUsGEwp1aUrOQhRWhNP.webp","https://static.pierrefrey.com/uploads/product/packshots/218bf3fa-cdba-4af3-b0fd-a77563aab061/zTQRh9zPzW16Tvu9Ll5h.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/e7a711a7-a131-4f19-883b-92d4e3f32211/3wIYH3A0eoIi2ZS1cGMD.webp,https://static.pierrefrey.com/uploads/product/packshots/5b165095-ee1f-4680-a8bd-7c8b35ac81a4/y8FDTMAyyPm72A3nBx9R.webp,https://static.pierrefrey.com/uploads/product/packshots/69cd0d72-253c-4f75-85b8-e96f860e885d/p6zYvoHDyn9UX8A7BXsJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8346139f-52a5-4f65-832d-df894dde42cf/7U9DSjPeQxYW2afTiZtd.webp,https://static.pierrefrey.com/uploads/product/packshots/f29f25c3-55c9-4bf5-939a-a7268dd85aec/KSUsGEwp1aUrOQhRWhNP.webp,https://static.pierrefrey.com/uploads/product/packshots/218bf3fa-cdba-4af3-b0fd-a77563aab061/zTQRh9zPzW16Tvu9Ll5h.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:12.375Z"}
+{"mfr_sku":"FP024001","pattern_name":"Tyler","color_name":"Chantilly","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP024001-tyler","list_image":"https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 166 cm - 65,35 inch | Straight repeat","Weight":"235 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY43"},"width":"129 cm / 50,78 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 129 cm - 50,00 inch | V: 166 cm - 65,35 inch | Straight repeat","weight":"235 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tyler","description":"Small width printed wallpapers - Paperbacked fabrics, Tyler. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:13.330Z"}
+{"mfr_sku":"W4979023","pattern_name":"Wallpaper odalys","color_name":"Amazon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4979023-wallpaper-odalys","list_image":"https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"70 cm / 27,55 inch","Repeat":"V: 63 cm - 24,80 inch | Half drop repeat","Weight":"185 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"70 cm / 27,55 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 63 cm - 24,80 inch | Half drop repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper odalys","description":"Small width printed wallpapers, Wallpaper odalys. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:14.177Z"}
+{"mfr_sku":"BP334001","pattern_name":"Shiva","color_name":"Chantilly","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334001-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:15.051Z"}
+{"mfr_sku":"FP793025","pattern_name":"Nimes","color_name":"Opale","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP793025-nimes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"Free match","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY27"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"205 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nimes","description":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics, Nimes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp","https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp","https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp","https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp","https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp","https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp","https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp","https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp","https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp,https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp,https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp,https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp,https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp,https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp,https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp,https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp,https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:15.830Z"}
+{"mfr_sku":"FP587003","pattern_name":"Le printemps du mekong metal","color_name":"Or","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP587003-le-printemps-du-mekong-metal","list_image":"https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"99 cm / 38,97 inch","Repeat":"H: 99 cm - 38,00 inch | V: 94 cm - 37,00 inch | Half drop repeat","Weight":"190 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0","Notes":"Good lightfastness"},"width":"99 cm / 38,97 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 99 cm - 38,00 inch | V: 94 cm - 37,00 inch | Half drop repeat","weight":"190 gr / m²","certifications":"EUROCLASS C-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le printemps du mekong metal","description":"Wide width printed wallpapers, Le printemps du mekong metal. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp","https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp","https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp","https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp","https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp","https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp","https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp","https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp","https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp","https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp","https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp","https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp,https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp,https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp,https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp,https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp,https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp,https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp,https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp,https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp,https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp,https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp,https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:16.583Z"}
+{"mfr_sku":"FP032001","pattern_name":"Niamh","color_name":"Nacre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP032001-niahm","list_image":"https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 92 cm - 36,22 inch | Straight repeat","Weight":"320 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Hand screen printed","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY43"},"width":"134 cm / 52,75 inch","composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 92 cm - 36,22 inch | Straight repeat","weight":"320 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Niamh","description":"Wide width printed wallpapers - Straws and similar materials, Niamh. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:17.595Z"}
+{"mfr_sku":"BP324010","pattern_name":"La route de la soie","color_name":"Ocre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP324010-la-route-de-la-soie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"280 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La route de la soie","description":"Plains & semi plains - Paperbacked fabrics, La route de la soie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp","https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp","https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp","https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp","https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp","https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp","https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp","https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp,https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp,https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp,https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp,https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp,https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp,https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp,https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:18.247Z"}
+{"mfr_sku":"FP946003","pattern_name":"Toile de nantes intisse","color_name":"Absinthe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP946003-toile-de-nantes-intisse","list_image":"https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"127 cm / 50,00 inch","Repeat":"H: 42 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Flat screen printed","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"127 cm / 50,00 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 42 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Toile de nantes intisse","description":"Wide width printed wallpapers, Toile de nantes intisse. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp","https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp","https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp","https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp","https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp","https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp,https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp,https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp,https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp,https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp,https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:19.106Z"}
+{"mfr_sku":"BP365006","pattern_name":"Pontchartrain coordonne","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP365006-pontchartrain-coordonne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 32 cm - 12,59 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 32 cm - 12,59 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Pontchartrain coordonne","description":"Small width printed wallpapers, Pontchartrain coordonne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/ff4f3828-a884-473e-b206-ef9fd2f3cb84/t3ploOwZhYx5Q9rzKAQh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/ff4f3828-a884-473e-b206-ef9fd2f3cb84/t3ploOwZhYx5Q9rzKAQh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:19.979Z"}
+{"mfr_sku":"FP993001","pattern_name":"Porquerolles","color_name":"Mediterranee","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP993001-porquerolles","list_image":"https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2_335x251_webp.webp","specs":{"Type":"Panoramic wallpapers","Sales Unit":"Full panoramic  300 cm x 300 cm ( 3 lengths 100 cm x 300 cm) - 118,11 in x 118,11 in( 3 lengths  39,37 in x 118,11 in)","Backing":"NON WOVEN","Composition":"-","Width":"100 cm / 39,37 inch","Repeat":"H: 300 cm - 118,00 inch | V: 300 cm - 118,11 inch","Weight":"185 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 3 panels"},"width":"100 cm / 39,37 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 300 cm - 118,00 inch | V: 300 cm - 118,11 inch","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  300 cm x 300 cm ( 3 lengths 100 cm x 300 cm) - 118,11 in x 118,11 in( 3 lengths  39,37 in x 118,11 in)","roll_length":null,"collection":"Porquerolles","description":"Panoramic wallpapers, Porquerolles. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp","https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp","https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp","https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp","https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp","https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp","https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp","https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp","https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp","https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp","https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp,https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp,https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp,https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp,https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp,https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp,https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp,https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp,https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp,https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp,https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:20.741Z"}
+{"mfr_sku":"BP334009","pattern_name":"Shiva","color_name":"Rouge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334009-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:21.669Z"}
+{"mfr_sku":"FP075002","pattern_name":"Ikati","color_name":"Fuchsia","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP075002-ikati","list_image":"https://static.pierrefrey.com/uploads/product/packshots/09afd485-6174-4c96-9c7e-f6a4c73024e7/uGsdcgLHiN9nHNYdiwVS_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"85 cm / 33,46 inch","Repeat":"H: 85 cm - 33,00 inch | V: 89 cm - 35,03 inch | Free match","Weight":"265 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY45"},"width":"85 cm / 33,46 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 85 cm - 33,00 inch | V: 89 cm - 35,03 inch | Free match","weight":"265 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ikati","description":"Paperbacked fabrics - Printed wallpapers, Ikati. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/09afd485-6174-4c96-9c7e-f6a4c73024e7/uGsdcgLHiN9nHNYdiwVS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/09afd485-6174-4c96-9c7e-f6a4c73024e7/uGsdcgLHiN9nHNYdiwVS.webp","https://static.pierrefrey.com/uploads/product/packshots/695190cc-3b87-4130-a1ce-fc7dca786802/gXKw7eMvezbFT5KJvuVd.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/882de925-95bc-4b95-a346-675c0cf689e0/RtkcBAyuzEiBZf9Sfo4G.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/09afd485-6174-4c96-9c7e-f6a4c73024e7/uGsdcgLHiN9nHNYdiwVS.webp,https://static.pierrefrey.com/uploads/product/packshots/695190cc-3b87-4130-a1ce-fc7dca786802/gXKw7eMvezbFT5KJvuVd.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/882de925-95bc-4b95-a346-675c0cf689e0/RtkcBAyuzEiBZf9Sfo4G.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:22.554Z"}
+{"mfr_sku":"FP648014","pattern_name":"Ernesto","color_name":"Melon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP648014-ernesto","list_image":"https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv_251x335_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"85 % Polyester - 15 % Acrylic","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"270 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY35"},"width":"140 cm / 55,11 inch","composition":"85 % Polyester - 15 % Acrylic","material":"NON WOVEN","pattern_repeat":"Free match","weight":"270 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ernesto","description":"Plains & semi plains - Paperbacked fabrics, Ernesto. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:23.407Z"}
+{"mfr_sku":"FP807001","pattern_name":"Les petits chats de colette","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP807001-les-petits-chats-de-colette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 92 cm - 36,22 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY28"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 92 cm - 36,22 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les petits chats de colette","description":"Wide width printed wallpapers, Les petits chats de colette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp","https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp","https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp","https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp","https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp","https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp","https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp","https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp","https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp,https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp,https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp,https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp,https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp,https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp,https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp,https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp,https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:23.993Z"}
+{"mfr_sku":"FP185001","pattern_name":"Wallpaper erevan","color_name":"Paper","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP185001-wallpaper-erevan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 39 cm - 15,35 inch | Straight repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 39 cm - 15,35 inch | Straight repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper erevan","description":"Small width printed wallpapers, Wallpaper erevan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:24.846Z"}
+{"mfr_sku":"FP754001","pattern_name":"Les fougeres","color_name":"Champagne","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP754001-les-fougeres","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Collaboration":"Maison Caspari","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY25"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les fougeres","description":"Small width printed wallpapers, Les fougeres. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp","https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp","https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp","https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp","https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp","https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp","https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp,https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp,https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp,https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp,https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp,https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp,https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:25.632Z"}
+{"mfr_sku":"FP870002","pattern_name":"Oka","color_name":"Boiserie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP870002-oka","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 68 cm - 26,00 inch | V: 56 cm - 22,04 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY33"},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 56 cm - 22,04 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Oka","description":"Wide width printed wallpapers, Oka. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp,https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:26.351Z"}
+{"mfr_sku":"FP071004","pattern_name":"Craquelin","color_name":"Jungle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP071004-craquelin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL_335x251_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"51 cm / 20,07 inch","Repeat":"H: 51 cm - 20,00 inch | Free match","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY45"},"width":"51 cm / 20,07 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 51 cm - 20,00 inch | Free match","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Craquelin","description":"Printed wallpapers, Craquelin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:27.255Z"}
+{"mfr_sku":"FP591001","pattern_name":"Vases masqués","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP591001-vases-masques","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Artist":"Fanny Lebon","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 126 cm - 49,60 inch | Half drop repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness","Information":"Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 126 cm - 49,60 inch | Half drop repeat","weight":"240 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Vases masqués","description":"Small width printed wallpapers - Straws and similar materials, Vases masqués. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp","https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp","https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp","https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp","https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp","https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp","https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp","https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp","https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp","https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp","https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp","https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp,https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp,https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp,https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp,https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp,https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp,https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp,https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp,https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp,https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp,https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp,https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:28.000Z"}
+{"mfr_sku":"FP009002","pattern_name":"Acropora","color_name":"Opale","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP009002-acropora","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 88 cm - 34,64 inch | Straight repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY41"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 88 cm - 34,64 inch | Straight repeat","weight":"240 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Acropora","description":"Straws and similar materials - Printed wallpapers, Acropora. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:28.922Z"}
+{"mfr_sku":"FP067002","pattern_name":"Cascade","color_name":"Ocean","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP067002-cascade","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 79 cm - 31,10 inch | Straight repeat","Weight":"465 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY45"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 79 cm - 31,10 inch | Straight repeat","weight":"465 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cascade","description":"Vinyls - Printed wallpapers, Cascade. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:29.823Z"}
+{"mfr_sku":"FP926001","pattern_name":"Gary","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP926001-gary","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"56 % Polyamide - 35 % Viscose - 8 % Polyester - 1 % Cotton","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"402 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"56 % Polyamide - 35 % Viscose - 8 % Polyester - 1 % Cotton","material":"NON WOVEN","pattern_repeat":"Free match","weight":"402 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Gary","description":"Paperbacked fabrics, Gary. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:30.606Z"}
+{"mfr_sku":"FP405016","pattern_name":"Zia","color_name":"Zinc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP405016-zia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"188 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"188 gr / m²","certifications":"EUROCLASS C-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Zia","description":"Plains & semi plains - Paperbacked fabrics, Zia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp","https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp","https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp","https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp","https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp","https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp","https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp,https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp,https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp,https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp,https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp,https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp,https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:31.164Z"}
+{"mfr_sku":"FP314001","pattern_name":"Indus tise","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP314001-indus-tise","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL_251x335_webp.webp","specs":{"Type":"End-on-end threads - Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Viscose","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 36 cm - 14,17 inch | Straight repeat","Weight":"264 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A"},"width":"52 cm / 20,47 inch","composition":"100 % Viscose","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 36 cm - 14,17 inch | Straight repeat","weight":"264 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Indus tise","description":"End-on-end threads - Small width printed wallpapers, Indus tise. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp","https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp","https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp","https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp","https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp","https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp","https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp","https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp","https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp","https://static.pierrefrey.com/uploads/product/packshots/1c277b8e-e00c-4ee7-870b-79ef08290cd1/xXBFZzJvHO0012GM6rSv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp,https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp,https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp,https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp,https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp,https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp,https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp,https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp,https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp,https://static.pierrefrey.com/uploads/product/packshots/1c277b8e-e00c-4ee7-870b-79ef08290cd1/xXBFZzJvHO0012GM6rSv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:31.939Z"}
+{"mfr_sku":"BP203003","pattern_name":"Wallpaper bengali","color_name":"Pink","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP203003-wallpaper-bengali","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  5,45 mts","Backing":"PAPER","Composition":"-","Width":"60 cm / 23,62 inch","Repeat":"V: 69 cm - 27,16 inch | Straight repeat","Weight":"204 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"60 cm / 23,62 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 69 cm - 27,16 inch | Straight repeat","weight":"204 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  5,45 mts","roll_length":null,"collection":"Wallpaper bengali","description":"Small width printed wallpapers, Wallpaper bengali. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/2b233c4d-1300-45ee-8566-08d70e3cb7a3/ocUOmplZEa0KisuQu4lP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/2b233c4d-1300-45ee-8566-08d70e3cb7a3/ocUOmplZEa0KisuQu4lP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:32.754Z"}
+{"mfr_sku":"FP977003","pattern_name":"Grenadier","color_name":"Outremer","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP977003-grenadier","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 136 cm - 53,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 136 cm - 53,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Grenadier","description":"Wide width printed wallpapers, Grenadier. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:33.523Z"}
+{"mfr_sku":"FP160001","pattern_name":"Wallpaper les paniers fleuris","color_name":"Bleu Ancien","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP160001-wallpaper-les-paniers-fleuris","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 42 cm - 16,53 inch | Straight repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 42 cm - 16,53 inch | Straight repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper les paniers fleuris","description":"Small width printed wallpapers, Wallpaper les paniers fleuris. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:34.271Z"}
+{"mfr_sku":"BP208003","pattern_name":"Wallpaper marquis de seignelay","color_name":"Blue/Pink","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP208003-wallpaper-marquis-de-seignelay","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"73 cm / 28,74 inch","Repeat":"V: 106 cm - 41,73 inch | Straight repeat","Weight":"191 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"73 cm / 28,74 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 106 cm - 41,73 inch | Straight repeat","weight":"191 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper marquis de seignelay","description":"Small width printed wallpapers, Wallpaper marquis de seignelay. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/c367838e-3e30-4dda-ad51-4a67fd5219c4/yFiJmIOXPUOK82TKVUX7.webp","https://static.pierrefrey.com/uploads/product/packshots/f225b2c3-801d-4a78-810a-3f5a5c11ae34/hvJrE4p53te3nw8nA6Kf.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/c367838e-3e30-4dda-ad51-4a67fd5219c4/yFiJmIOXPUOK82TKVUX7.webp,https://static.pierrefrey.com/uploads/product/packshots/f225b2c3-801d-4a78-810a-3f5a5c11ae34/hvJrE4p53te3nw8nA6Kf.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:35.096Z"}
+{"mfr_sku":"FP037001","pattern_name":"Aiden","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP037001-aiden","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"42 % Polyester - 37 % Acrylic - 16 % Viscose - 5 % Cotton","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"399 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"137 cm / 53,93 inch","composition":"42 % Polyester - 37 % Acrylic - 16 % Viscose - 5 % Cotton","material":"NON WOVEN","pattern_repeat":"Free match","weight":"399 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Aiden","description":"Paperbacked fabrics, Aiden. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:35.886Z"}
+{"mfr_sku":"BP365002","pattern_name":"Pontchartrain coordonne","color_name":"Guimauve","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP365002-pontchartrain-coordonne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 32 cm - 12,59 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 32 cm - 12,59 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Pontchartrain coordonne","description":"Small width printed wallpapers, Pontchartrain coordonne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/ff4f3828-a884-473e-b206-ef9fd2f3cb84/t3ploOwZhYx5Q9rzKAQh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/ff4f3828-a884-473e-b206-ef9fd2f3cb84/t3ploOwZhYx5Q9rzKAQh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:36.991Z"}
+{"mfr_sku":"FP170002","pattern_name":"Wallpaper crespieres","color_name":"Rose Ancien","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP170002-wallpaper-crespieres","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"67 cm / 26,37 inch","Repeat":"V: 32 cm - 12,59 inch | Half drop repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"67 cm / 26,37 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 32 cm - 12,59 inch | Half drop repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper crespieres","description":"Small width printed wallpapers, Wallpaper crespieres. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/89cd5b4c-082c-4335-8d4f-7c16cbe716e5/yHxY9BXQR18Pj14t9w3d.webp","https://static.pierrefrey.com/uploads/product/packshots/1404d905-f0ef-498a-b616-0144b913b877/NbZdR0oCar5c6QubPkBV.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/89cd5b4c-082c-4335-8d4f-7c16cbe716e5/yHxY9BXQR18Pj14t9w3d.webp,https://static.pierrefrey.com/uploads/product/packshots/1404d905-f0ef-498a-b616-0144b913b877/NbZdR0oCar5c6QubPkBV.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:37.811Z"}
+{"mfr_sku":"FP040002","pattern_name":"Teodor","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP040002-teodor","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"50 % Polyester - 30 % Cotton - 20 % Viscose","Width":"139 cm / 54,72 inch","Repeat":"H: 139 cm - 54,00 inch | V: 78 cm - 30,70 inch | Straight repeat","Weight":"535 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"139 cm / 54,72 inch","composition":"50 % Polyester - 30 % Cotton - 20 % Viscose","material":"NON WOVEN","pattern_repeat":"H: 139 cm - 54,00 inch | V: 78 cm - 30,70 inch | Straight repeat","weight":"535 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Teodor","description":"Paperbacked fabrics, Teodor. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:38.723Z"}
+{"mfr_sku":"FP014002","pattern_name":"Varaderos","color_name":"Ocean","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP014002-varaderos","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 52 cm - 20,47 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY41"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 52 cm - 20,47 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Varaderos","description":"Wide width printed wallpapers, Varaderos. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/a5795ffa-c8c1-48e2-aaa1-41ee541bbe99/cjxbFdF8Mk0jGsEndaYU.webp","https://static.pierrefrey.com/uploads/product/packshots/aeffe135-5452-42c9-b4d4-f56193ae14ee/jUSWqV1aXyQBDZjkNx8a.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/a5795ffa-c8c1-48e2-aaa1-41ee541bbe99/cjxbFdF8Mk0jGsEndaYU.webp,https://static.pierrefrey.com/uploads/product/packshots/aeffe135-5452-42c9-b4d4-f56193ae14ee/jUSWqV1aXyQBDZjkNx8a.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:39.478Z"}
+{"mfr_sku":"FP405017","pattern_name":"Zia","color_name":"Galet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP405017-zia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"188 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"188 gr / m²","certifications":"EUROCLASS C-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Zia","description":"Plains & semi plains - Paperbacked fabrics, Zia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp","https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp","https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp","https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp","https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp","https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp","https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp","https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp,https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp,https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp,https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp,https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp,https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp,https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp,https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:40.129Z"}
+{"mfr_sku":"BP364001","pattern_name":"Les renoncules","color_name":"Petale","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP364001-les-renoncules","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 70 cm - 27,55 inch | Half drop repeat","Weight":"155 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 70 cm - 27,55 inch | Half drop repeat","weight":"155 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les renoncules","description":"Small width printed wallpapers, Les renoncules. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:41.211Z"}
+{"mfr_sku":"FP828001","pattern_name":"Pop corn","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP828001-pop-corn","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 89 cm - 35,03 inch | Half drop repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY28"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 89 cm - 35,03 inch | Half drop repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Pop corn","description":"Wide width printed wallpapers, Pop corn. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp","https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp","https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp","https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp","https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp","https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp","https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp","https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp","https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp","https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp,https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp,https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp,https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp,https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp,https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp,https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp,https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp,https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp,https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:41.962Z"}
+{"mfr_sku":"LP112002","pattern_name":"Mikado","color_name":"Pivoine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP112002-mikado","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 62 cm - 24,40 inch | Half drop repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 68 cm - 26,00 inch | V: 62 cm - 24,40 inch | Half drop repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Mikado","description":"Small width printed wallpapers, Mikado. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/006a3921-ada9-4ac6-8d48-41e2d1ca2f5b/0qvlxJpyv5WqkG61uiNL.webp","https://static.pierrefrey.com/uploads/product/packshots/8b671afe-9d3d-454b-85a0-6e457ba788fa/I5jzTEWn7HrYf3Cws9CC.webp","https://static.pierrefrey.com/uploads/product/packshots/c2fa8d49-ccd4-4d25-a6bd-697b9687ce67/11UHwvh0gQj7y6tIrFnk.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/006a3921-ada9-4ac6-8d48-41e2d1ca2f5b/0qvlxJpyv5WqkG61uiNL.webp,https://static.pierrefrey.com/uploads/product/packshots/8b671afe-9d3d-454b-85a0-6e457ba788fa/I5jzTEWn7HrYf3Cws9CC.webp,https://static.pierrefrey.com/uploads/product/packshots/c2fa8d49-ccd4-4d25-a6bd-697b9687ce67/11UHwvh0gQj7y6tIrFnk.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:42.764Z"}
+{"mfr_sku":"FP983002","pattern_name":"Tamatoa","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP983002-tamatoa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"72 % Polyester - 28 % Polyamide","Width":"139 cm / 54,72 inch","Repeat":"H: 69 cm - 27,00 inch | V: 102 cm - 40,15 inch | Straight repeat","Weight":"509 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect"},"width":"139 cm / 54,72 inch","composition":"72 % Polyester - 28 % Polyamide","material":"NON WOVEN","pattern_repeat":"H: 69 cm - 27,00 inch | V: 102 cm - 40,15 inch | Straight repeat","weight":"509 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tamatoa","description":"Paperbacked fabrics - Straws and similar materials, Tamatoa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:43.603Z"}
+{"mfr_sku":"FP945003","pattern_name":"Mortagne","color_name":"Fusain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP945003-mortagne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/0fd2c07f-90e7-4faa-ab20-d40424bb98b2/rKtapDptCp8d4Sqw9Pqa_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"61 % Polyester - 31 % Acrylic - 8 % Linen","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 90 cm - 35,43 inch | Straight repeat","Weight":"321 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Notes":"Flat screen printed"},"width":"134 cm / 52,75 inch","composition":"61 % Polyester - 31 % Acrylic - 8 % Linen","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 90 cm - 35,43 inch | Straight repeat","weight":"321 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mortagne","description":"Wide width printed wallpapers - Paperbacked fabrics, Mortagne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/0fd2c07f-90e7-4faa-ab20-d40424bb98b2/rKtapDptCp8d4Sqw9Pqa.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/0fd2c07f-90e7-4faa-ab20-d40424bb98b2/rKtapDptCp8d4Sqw9Pqa.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/0fd2c07f-90e7-4faa-ab20-d40424bb98b2/rKtapDptCp8d4Sqw9Pqa.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:44.442Z"}
+{"mfr_sku":"FP970001","pattern_name":"Vaima","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP970001-vaima","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6_251x335_webp.webp","specs":{"Type":"Embossed patterns - Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"PAPER","Composition":"31 % Viscose - 23 % Sisa - 20 % Paper - 14 % Cotton - 12 % Polyester","Width":"85 cm / 33,46 inch","Repeat":"H: 43 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"465 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Information":"Panel effect"},"width":"85 cm / 33,46 inch","composition":"31 % Viscose - 23 % Sisa - 20 % Paper - 14 % Cotton - 12 % Polyester","material":"PAPER","pattern_repeat":"H: 43 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"465 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Vaima","description":"Embossed patterns - Straws and similar materials - Embroideries, Vaima. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:45.335Z"}
+{"mfr_sku":"LP113001","pattern_name":"Floride","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP113001-floride","list_image":"https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 23 cm - 9,00 inch | V: 30 cm - 11,81 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 23 cm - 9,00 inch | V: 30 cm - 11,81 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Floride","description":"Small width printed wallpapers, Floride. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:46.117Z"}
+{"mfr_sku":"FP758001","pattern_name":"Les folies","color_name":"Corail","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP758001-les-folies","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Dessin Harrison Howard","Collaboration":"Maison Caspari","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 107 cm - 42,12 inch | Half drop repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY25"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 107 cm - 42,12 inch | Half drop repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les folies","description":"Wide width printed wallpapers, Les folies. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp","https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp","https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp","https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp","https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp","https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp","https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp,https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp,https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp,https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp,https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp,https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp,https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:46.863Z"}
+{"mfr_sku":"FP195002","pattern_name":"Coutances","color_name":"Aquamist","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP195002-coutances","list_image":"https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 71 cm - 27,95 inch | Half drop repeat","Weight":"202 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 71 cm - 27,95 inch | Half drop repeat","weight":"202 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Coutances","description":"Small width printed wallpapers, Coutances. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:47.769Z"}
+{"mfr_sku":"FP647002","pattern_name":"Alba","color_name":"Champagne","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP647002-alba","list_image":"https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"135 cm / 53,14 inch","Repeat":"Free match","Weight":"480 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect"},"width":"135 cm / 53,14 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"480 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Alba","description":"Plains & semi plains - Paperbacked fabrics, Alba. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:48.510Z"}
+{"mfr_sku":"LP103005","pattern_name":"L'arbre indien","color_name":"Rouge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP103005-larbre-indien","list_image":"https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  3,66 mts","Backing":"PAPER","Composition":"-","Width":"91 cm / 35,82 inch","Repeat":"H: 91 cm - 35,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","Weight":"160 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"91 cm / 35,82 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 91 cm - 35,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  3,66 mts","roll_length":null,"collection":"L'arbre indien","description":"Small width printed wallpapers, L'arbre indien. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/0c421e2d-53b9-4cee-a675-291be08762d0/5Ouvq8pADTmZyhqgkvxk.webp","https://static.pierrefrey.com/uploads/product/packshots/a212f17b-23b5-4d38-a16f-4a36ed029703/1ULtO8z5T7txMbheMJ3d.webp","https://static.pierrefrey.com/uploads/product/packshots/7d75e440-cedd-4f6a-96c5-cd0570975d2e/XjQ4REi6cPLp0nkQurvN.webp","https://static.pierrefrey.com/uploads/product/packshots/50b563bf-7d10-45d2-840c-157815243fd4/brJaYqrAXmuFvDsAYd5t.webp","https://static.pierrefrey.com/uploads/product/packshots/1eb63eff-b5e9-4b95-88ba-962431939661/8EtSb31vua84YiVDnOxg.webp","https://static.pierrefrey.com/uploads/product/packshots/0f3073f9-d5a0-4bf8-8b4f-ce25dd5410c6/v6hxUgR98ayFMXhp13SC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/0c421e2d-53b9-4cee-a675-291be08762d0/5Ouvq8pADTmZyhqgkvxk.webp,https://static.pierrefrey.com/uploads/product/packshots/a212f17b-23b5-4d38-a16f-4a36ed029703/1ULtO8z5T7txMbheMJ3d.webp,https://static.pierrefrey.com/uploads/product/packshots/7d75e440-cedd-4f6a-96c5-cd0570975d2e/XjQ4REi6cPLp0nkQurvN.webp,https://static.pierrefrey.com/uploads/product/packshots/50b563bf-7d10-45d2-840c-157815243fd4/brJaYqrAXmuFvDsAYd5t.webp,https://static.pierrefrey.com/uploads/product/packshots/1eb63eff-b5e9-4b95-88ba-962431939661/8EtSb31vua84YiVDnOxg.webp,https://static.pierrefrey.com/uploads/product/packshots/0f3073f9-d5a0-4bf8-8b4f-ce25dd5410c6/v6hxUgR98ayFMXhp13SC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:49.363Z"}
+{"mfr_sku":"BP363003","pattern_name":"Marigold","color_name":"Guimauve","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP363003-marigold","list_image":"https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 61 cm - 24,01 inch | Straight repeat","Weight":"-","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 61 cm - 24,01 inch | Straight repeat","weight":"-","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Marigold","description":"Small width printed wallpapers, Marigold. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:50.470Z"}
+{"mfr_sku":"FP952001","pattern_name":"Camomille","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP952001-camomille","list_image":"https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Camille Gressier","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 137 cm - 53,93 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 137 cm - 53,93 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Camomille","description":"Wide width printed wallpapers, Camomille. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:51.323Z"}
+{"mfr_sku":"FP786004","pattern_name":"Arlesienne","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP786004-arlesienne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Arlesienne","description":"Small width printed wallpapers, Arlesienne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","https://static.pierrefrey.com/uploads/product/packshots/ec27716e-f91a-4215-b600-85e7b4961402/Pxz49wGzCTfN9gJzQccH.webp","https://static.pierrefrey.com/uploads/product/packshots/065100da-5ea5-4f01-9af4-e6a8e1397bfb/bCdgUaNskRc73diUe722.webp","https://static.pierrefrey.com/uploads/product/packshots/fe3cff35-bc90-4537-ba7f-6a379a84b390/icokPHHV8Lvq79JJc1wo.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp,https://static.pierrefrey.com/uploads/product/packshots/ec27716e-f91a-4215-b600-85e7b4961402/Pxz49wGzCTfN9gJzQccH.webp,https://static.pierrefrey.com/uploads/product/packshots/065100da-5ea5-4f01-9af4-e6a8e1397bfb/bCdgUaNskRc73diUe722.webp,https://static.pierrefrey.com/uploads/product/packshots/fe3cff35-bc90-4537-ba7f-6a379a84b390/icokPHHV8Lvq79JJc1wo.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:52.197Z"}
+{"mfr_sku":"W4979019","pattern_name":"Wallpaper odalys","color_name":"Red Green","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4979019-wallpaper-odalys","list_image":"https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"70 cm / 27,55 inch","Repeat":"V: 63 cm - 24,80 inch | Half drop repeat","Weight":"185 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"70 cm / 27,55 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 63 cm - 24,80 inch | Half drop repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper odalys","description":"Small width printed wallpapers, Wallpaper odalys. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:53.079Z"}
+{"mfr_sku":"FP878002","pattern_name":"Le ballet","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP878002-le-ballet","list_image":"https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch | V: 46 cm - 18,11 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Book":"F9979PPFREY33"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 46 cm - 18,11 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Le ballet","description":"Small width printed wallpapers, Le ballet. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","https://static.pierrefrey.com/uploads/product/packshots/894a9800-fde0-4241-8250-7f10e170ccd9/6XYuiTQg308If7nwkZWT.webp","https://static.pierrefrey.com/uploads/product/packshots/d373f3d4-d7db-4460-b283-179fec58fe23/gcDtQ898SvkwmKNWPCaF.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp,https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp,https://static.pierrefrey.com/uploads/product/packshots/894a9800-fde0-4241-8250-7f10e170ccd9/6XYuiTQg308If7nwkZWT.webp,https://static.pierrefrey.com/uploads/product/packshots/d373f3d4-d7db-4460-b283-179fec58fe23/gcDtQ898SvkwmKNWPCaF.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:53.803Z"}
+{"mfr_sku":"FP975001","pattern_name":"Tikehau","color_name":"Paille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP975001-tikehau","list_image":"https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 86 cm - 33,85 inch | Straight repeat","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 86 cm - 33,85 inch | Straight repeat","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tikehau","description":"Small width printed wallpapers - Straws and similar materials, Tikehau. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:54.441Z"}
+{"mfr_sku":"FP640001","pattern_name":"Albertine","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP640001-albertine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"120 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"120 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Albertine","description":"Plains & semi plains - Paperbacked fabrics, Albertine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","https://static.pierrefrey.com/uploads/product/packshots/2176897f-e64b-45ce-a6f9-809c1d7e9e6a/Wayc0q7jYwSowYy4QBoX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp,https://static.pierrefrey.com/uploads/product/packshots/2176897f-e64b-45ce-a6f9-809c1d7e9e6a/Wayc0q7jYwSowYy4QBoX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:55.350Z"}
+{"mfr_sku":"FP786001","pattern_name":"Arlesienne","color_name":"Noix","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP786001-arlesienne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Arlesienne","description":"Small width printed wallpapers, Arlesienne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","https://static.pierrefrey.com/uploads/product/packshots/ec27716e-f91a-4215-b600-85e7b4961402/Pxz49wGzCTfN9gJzQccH.webp","https://static.pierrefrey.com/uploads/product/packshots/065100da-5ea5-4f01-9af4-e6a8e1397bfb/bCdgUaNskRc73diUe722.webp","https://static.pierrefrey.com/uploads/product/packshots/fe3cff35-bc90-4537-ba7f-6a379a84b390/icokPHHV8Lvq79JJc1wo.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp,https://static.pierrefrey.com/uploads/product/packshots/ec27716e-f91a-4215-b600-85e7b4961402/Pxz49wGzCTfN9gJzQccH.webp,https://static.pierrefrey.com/uploads/product/packshots/065100da-5ea5-4f01-9af4-e6a8e1397bfb/bCdgUaNskRc73diUe722.webp,https://static.pierrefrey.com/uploads/product/packshots/fe3cff35-bc90-4537-ba7f-6a379a84b390/icokPHHV8Lvq79JJc1wo.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:56.148Z"}
+{"mfr_sku":"FP860001","pattern_name":"Coeurs de marie","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP860001-coeurs-de-marie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Coeurs de marie","description":"Small width printed wallpapers, Coeurs de marie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:56.990Z"}
+{"mfr_sku":"FP395001","pattern_name":"Pampa","color_name":"Jais","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP395001-pampa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/15ea38a8-541f-4e79-a11d-2b9dc90e3e8f/to8KmLhihnHaaGTPo4RX_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 94 cm - 37,00 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"140 cm / 55,11 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 94 cm - 37,00 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Pampa","description":"Wide width printed wallpapers, Pampa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/15ea38a8-541f-4e79-a11d-2b9dc90e3e8f/to8KmLhihnHaaGTPo4RX.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/15ea38a8-541f-4e79-a11d-2b9dc90e3e8f/to8KmLhihnHaaGTPo4RX.webp","https://static.pierrefrey.com/uploads/product/packshots/7e8abc59-aaee-460e-bfc7-2246f4ad7672/3OfiJhUX0OGYpc3c9I31.webp","https://static.pierrefrey.com/uploads/product/packshots/319c7d51-4ecf-4ee2-b4bd-51b0b403c17f/5NrXANIFfOmXN1GjBq0Y.webp","https://static.pierrefrey.com/uploads/product/packshots/de1705e3-02e4-435e-a649-10ea62c3270a/ISPjJWz6LkZLv1mDW1cm.webp","https://static.pierrefrey.com/uploads/product/packshots/4d2a9406-5b1a-4c02-80d7-6bc8e377adb1/IBAJiIK8SPLItTgX9zk3.webp","https://static.pierrefrey.com/uploads/product/packshots/1563a0fb-b464-421a-b3b6-ca096196a299/Ekk3HFC0HAwlnRaBAyqj.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/15ea38a8-541f-4e79-a11d-2b9dc90e3e8f/to8KmLhihnHaaGTPo4RX.webp,https://static.pierrefrey.com/uploads/product/packshots/7e8abc59-aaee-460e-bfc7-2246f4ad7672/3OfiJhUX0OGYpc3c9I31.webp,https://static.pierrefrey.com/uploads/product/packshots/319c7d51-4ecf-4ee2-b4bd-51b0b403c17f/5NrXANIFfOmXN1GjBq0Y.webp,https://static.pierrefrey.com/uploads/product/packshots/de1705e3-02e4-435e-a649-10ea62c3270a/ISPjJWz6LkZLv1mDW1cm.webp,https://static.pierrefrey.com/uploads/product/packshots/4d2a9406-5b1a-4c02-80d7-6bc8e377adb1/IBAJiIK8SPLItTgX9zk3.webp,https://static.pierrefrey.com/uploads/product/packshots/1563a0fb-b464-421a-b3b6-ca096196a299/Ekk3HFC0HAwlnRaBAyqj.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:57.683Z"}
+{"mfr_sku":"LP111003","pattern_name":"Les lions","color_name":"Lavandier","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP111003-les-lions","list_image":"https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"64 cm / 25,19 inch","Repeat":"H: 64 cm - 25,00 inch | V: 110 cm - 43,30 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"64 cm / 25,19 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 64 cm - 25,00 inch | V: 110 cm - 43,30 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Les lions","description":"Small width printed wallpapers, Les lions. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7ca31d75-cab7-45fb-8832-58a94f9af14e/uwNAgSh41Qy1PmKM3C2Y.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7ca31d75-cab7-45fb-8832-58a94f9af14e/uwNAgSh41Qy1PmKM3C2Y.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:58.572Z"}
+{"mfr_sku":"FP050002","pattern_name":"Kasuri","color_name":"Pluie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP050002-kasuri","list_image":"https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"70 % Cotton - 30 % Polyester","Width":"126 cm / 49,60 inch","Repeat":"H: 42 cm - 16,00 inch | V: 39 cm - 15,35 inch | Straight repeat","Weight":"330 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY44"},"width":"126 cm / 49,60 inch","composition":"70 % Cotton - 30 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 42 cm - 16,00 inch | V: 39 cm - 15,35 inch | Straight repeat","weight":"330 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Kasuri","description":"Wide width printed wallpapers - Paperbacked fabrics, Kasuri. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:59.390Z"}
+{"mfr_sku":"FP482001","pattern_name":"Sur le nil","color_name":"Naturel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP482001-sur-le-nil","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 98 cm - 38,58 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 98 cm - 38,58 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sur le nil","description":"Wide width printed wallpapers, Sur le nil. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","https://static.pierrefrey.com/uploads/product/packshots/d6d49fcf-f08a-4da0-b424-869cfaf41303/KpnvaVERtlnkQqUFy0wu.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp,https://static.pierrefrey.com/uploads/product/packshots/d6d49fcf-f08a-4da0-b424-869cfaf41303/KpnvaVERtlnkQqUFy0wu.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:09:59.997Z"}
+{"mfr_sku":"FP892003","pattern_name":"Mirage","color_name":"Ecorce","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP892003-mirage","list_image":"https://static.pierrefrey.com/uploads/product/packshots/183398ae-4f49-4888-9535-2c6788660ccf/ThZ7bsG32BIlIHGAlFHy_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Raffia","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"242 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect","Book":"F9979PPFREY32 | F9979PPFREY37"},"width":"86 cm / 33,85 inch","composition":"100 % Raffia","material":"NON WOVEN","pattern_repeat":"H: 86 cm - 33,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"242 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mirage","description":"Small width printed wallpapers - Straws and similar materials, Mirage. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/183398ae-4f49-4888-9535-2c6788660ccf/ThZ7bsG32BIlIHGAlFHy.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/183398ae-4f49-4888-9535-2c6788660ccf/ThZ7bsG32BIlIHGAlFHy.webp","https://static.pierrefrey.com/uploads/product/packshots/b3fd82be-dd6e-4923-accd-19ffa2b7347f/pYnwQWm9bve6HGBO29XI.webp","https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp","https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp","https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp","https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp","https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/183398ae-4f49-4888-9535-2c6788660ccf/ThZ7bsG32BIlIHGAlFHy.webp,https://static.pierrefrey.com/uploads/product/packshots/b3fd82be-dd6e-4923-accd-19ffa2b7347f/pYnwQWm9bve6HGBO29XI.webp,https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp,https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp,https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp,https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp,https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:00.809Z"}
+{"mfr_sku":"BP309001","pattern_name":"Wallpaper gisors","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP309001-wallpaper-gisors","list_image":"https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 17 cm - 6,00 inch | Free match","Weight":"151 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Notes":"Hand screen printed"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 17 cm - 6,00 inch | Free match","weight":"151 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Wallpaper gisors","description":"Small width printed wallpapers, Wallpaper gisors. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:02.338Z"}
+{"mfr_sku":"FP793021","pattern_name":"Nimes","color_name":"Perdrix","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP793021-nimes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"Free match","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY27"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"205 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nimes","description":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics, Nimes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp","https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp","https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp","https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp","https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp","https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp","https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp","https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp","https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp,https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp,https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp,https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp,https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp,https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp,https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp,https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp,https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:03.753Z"}
+{"mfr_sku":"BP334020","pattern_name":"Shiva","color_name":"Citronnade","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334020-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:04.853Z"}
+{"mfr_sku":"FP385001","pattern_name":"Vela","color_name":"Paille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP385001-vela","list_image":"https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw_335x251_webp.webp","specs":{"Type":"Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"91 cm / 35,82 inch","Repeat":"Free match","Weight":"729 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect"},"width":"91 cm / 35,82 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"Free match","weight":"729 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Vela","description":"Straws and similar materials, Vela. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw.webp","https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK.webp","https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI.webp","https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw.webp,https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK.webp,https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI.webp,https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:05.700Z"}
+{"mfr_sku":"FP014003","pattern_name":"Varaderos","color_name":"Oasis","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP014003-varaderos","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 52 cm - 20,47 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY41"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 52 cm - 20,47 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Varaderos","description":"Wide width printed wallpapers, Varaderos. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/a5795ffa-c8c1-48e2-aaa1-41ee541bbe99/cjxbFdF8Mk0jGsEndaYU.webp","https://static.pierrefrey.com/uploads/product/packshots/aeffe135-5452-42c9-b4d4-f56193ae14ee/jUSWqV1aXyQBDZjkNx8a.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/a5795ffa-c8c1-48e2-aaa1-41ee541bbe99/cjxbFdF8Mk0jGsEndaYU.webp,https://static.pierrefrey.com/uploads/product/packshots/aeffe135-5452-42c9-b4d4-f56193ae14ee/jUSWqV1aXyQBDZjkNx8a.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:06.499Z"}
+{"mfr_sku":"FP034002","pattern_name":"Yelena","color_name":"Brume","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP034002-yelena","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 136 cm - 53,00 inch | V: 117 cm - 46,06 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY43"},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 136 cm - 53,00 inch | V: 117 cm - 46,06 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Yelena","description":"Wide width printed wallpapers, Yelena. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:07.455Z"}
+{"mfr_sku":"FP975003","pattern_name":"Tikehau","color_name":"Palmier","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP975003-tikehau","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 86 cm - 33,85 inch | Straight repeat","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 86 cm - 33,85 inch | Straight repeat","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tikehau","description":"Small width printed wallpapers - Straws and similar materials, Tikehau. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:08.110Z"}
+{"mfr_sku":"BP347001","pattern_name":"Bengali-albertine","color_name":"Rouge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP347001-bengali-albertine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 69 cm - 27,16 inch | Straight repeat","Weight":"325 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ8"},"width":"129 cm / 50,78 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 129 cm - 50,00 inch | V: 69 cm - 27,16 inch | Straight repeat","weight":"325 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bengali-albertine","description":"Wide width printed wallpapers - Paperbacked fabrics, Bengali-albertine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/2b233c4d-1300-45ee-8566-08d70e3cb7a3/ocUOmplZEa0KisuQu4lP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/2b233c4d-1300-45ee-8566-08d70e3cb7a3/ocUOmplZEa0KisuQu4lP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:09.198Z"}
+{"mfr_sku":"FP185002","pattern_name":"Wallpaper erevan","color_name":"Cardinal Red","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP185002-wallpaper-erevan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 39 cm - 15,35 inch | Straight repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 39 cm - 15,35 inch | Straight repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper erevan","description":"Small width printed wallpapers, Wallpaper erevan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:10.054Z"}
+{"mfr_sku":"BP209A02","pattern_name":"Wallpaper septeuil","color_name":"Pink Red","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP209A02-wallpaper-septeuil","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 103 cm - 40,55 inch | Straight repeat","Weight":"203 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 103 cm - 40,55 inch | Straight repeat","weight":"203 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper septeuil","description":"Small width printed wallpapers, Wallpaper septeuil. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:10.885Z"}
+{"mfr_sku":"FP070002","pattern_name":"Graphic","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP070002-graphic","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flat screen printed","Book":"F9979PPFREY45"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Graphic","description":"Printed wallpapers, Graphic. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/06e90035-7b16-4349-ba31-f79cdb63c492/6tIOay2PQXwD76ddpKB2.webp","https://static.pierrefrey.com/uploads/product/packshots/24f5d3e4-e076-4d35-9154-caa9e5599064/bpd5da8pE4V38PoP2QEl.webp","https://static.pierrefrey.com/uploads/product/packshots/d190ccc3-8c43-4f68-9948-efb45a2e48a0/baLzBZcwkdpPGF4dQ2zU.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/06e90035-7b16-4349-ba31-f79cdb63c492/6tIOay2PQXwD76ddpKB2.webp,https://static.pierrefrey.com/uploads/product/packshots/24f5d3e4-e076-4d35-9154-caa9e5599064/bpd5da8pE4V38PoP2QEl.webp,https://static.pierrefrey.com/uploads/product/packshots/d190ccc3-8c43-4f68-9948-efb45a2e48a0/baLzBZcwkdpPGF4dQ2zU.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:11.727Z"}
+{"mfr_sku":"BP334010","pattern_name":"Shiva","color_name":"Corail","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334010-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:12.481Z"}
+{"mfr_sku":"BP334012","pattern_name":"Shiva","color_name":"Jaune","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334012-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:13.279Z"}
+{"mfr_sku":"BP332002","pattern_name":"Konotori","color_name":"Vert","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP332002-konotori","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"H: 65 cm - 25,00 inch | V: 62 cm - 24,40 inch | Straight repeat","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 65 cm - 25,00 inch | V: 62 cm - 24,40 inch | Straight repeat","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Konotori","description":"Wide width printed wallpapers - Paperbacked fabrics, Konotori. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4c6d8-8af0-4573-8070-d52958e4227c/lG2JfOHwxNmRL82n6dvE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4c6d8-8af0-4573-8070-d52958e4227c/lG2JfOHwxNmRL82n6dvE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:14.133Z"}
+{"mfr_sku":"FP919002","pattern_name":"Liam","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP919002-liam","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"83 % Linen - 17 % Polyamide","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"290 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"140 cm / 55,11 inch","composition":"83 % Linen - 17 % Polyamide","material":"NON WOVEN","pattern_repeat":"Free match","weight":"290 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Liam","description":"Plains & semi plains - Paperbacked fabrics, Liam. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:14.961Z"}
+{"mfr_sku":"FP646001","pattern_name":"Aiko","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP646001-aiko","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"245 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect"},"width":"132 cm / 51,96 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"245 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Aiko","description":"Paperbacked fabrics, Aiko. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:15.755Z"}
+{"mfr_sku":"FP006002","pattern_name":"Les anemones","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP006002-les-anemones","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Artist":"Rachael Cocker","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 24 cm - 9,44 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 24 cm - 9,44 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les anemones","description":"Printed wallpapers, Les anemones. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:16.476Z"}
+{"mfr_sku":"FP981001","pattern_name":"Makemo","color_name":"Ocre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP981001-makemo","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 46 cm - 18,00 inch | V: 48 cm - 18,89 inch | Straight repeat","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness | Raised pattern"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 46 cm - 18,00 inch | V: 48 cm - 18,89 inch | Straight repeat","weight":"205 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Makemo","description":"Wide width printed wallpapers - Embossed patterns, Makemo. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:17.192Z"}
+{"mfr_sku":"FP645001","pattern_name":"Isha","color_name":"Champagne","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP645001-isha","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"135 cm / 53,14 inch","Repeat":"Free match","Weight":"270 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect"},"width":"135 cm / 53,14 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"270 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Isha","description":"Paperbacked fabrics, Isha. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:17.993Z"}
+{"mfr_sku":"FP517001","pattern_name":"Aloe","color_name":"Citrus","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP517001-aloe","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Panoramic wallpapers","Sales Unit":"Full panoramic  340 cm x 300 cm ( 4 lengths  68 cm x 300 cm) - 133,85 in x 118,11 in( 4 lengths  26,77 in x 118,11 in)","Backing":"PAPER","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 272 cm - 107,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"289 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Dry strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 4 panels"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"PAPER","pattern_repeat":"H: 272 cm - 107,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"289 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  340 cm x 300 cm ( 4 lengths  68 cm x 300 cm) - 133,85 in x 118,11 in( 4 lengths  26,77 in x 118,11 in)","roll_length":null,"collection":"Aloe","description":"Small width printed wallpapers - Vinyls - Panoramic wallpapers, Aloe. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM.webp","https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct.webp","https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI.webp","https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT.webp","https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8.webp","https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/1ea5c079-5d05-48ac-90aa-5e0847587a12/P01Tc8codl4iWi0fYRyh.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM.webp,https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct.webp,https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI.webp,https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT.webp,https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8.webp,https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/1ea5c079-5d05-48ac-90aa-5e0847587a12/P01Tc8codl4iWi0fYRyh.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/1ea5c079-5d05-48ac-90aa-5e0847587a12/P01Tc8codl4iWi0fYRyh.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:10:18.754Z"}
+{"mfr_sku":"FP193001","pattern_name":"Aquarius","color_name":"Stone","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP193001-aquarius","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 69 cm - 27,16 inch | Half drop repeat","Weight":"173 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 69 cm - 27,16 inch | Half drop repeat","weight":"173 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Aquarius","description":"Small width printed wallpapers, Aquarius. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:19.686Z"}
+{"mfr_sku":"FP074002","pattern_name":"Tapa","color_name":"Fusain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP074002-tapa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1f9f12da-4f28-43d8-90b0-a22b0b3f72ea/L97enueRN2cn5jjnrcJ9_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 139 cm - 54,72 inch | Straight repeat","Weight":"245 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY45"},"width":"129 cm / 50,78 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 129 cm - 50,00 inch | V: 139 cm - 54,72 inch | Straight repeat","weight":"245 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tapa","description":"Paperbacked fabrics - Printed wallpapers, Tapa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1f9f12da-4f28-43d8-90b0-a22b0b3f72ea/L97enueRN2cn5jjnrcJ9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1f9f12da-4f28-43d8-90b0-a22b0b3f72ea/L97enueRN2cn5jjnrcJ9.webp","https://static.pierrefrey.com/uploads/product/packshots/eea775b2-dd0e-4077-9986-1f670b53e873/xigIHvZq62xP7dayHhC6.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/cce54c5a-b387-44fe-822b-f6c0bc0e5d3b/vVd32oKjFONMGFaZsiIr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1f9f12da-4f28-43d8-90b0-a22b0b3f72ea/L97enueRN2cn5jjnrcJ9.webp,https://static.pierrefrey.com/uploads/product/packshots/eea775b2-dd0e-4077-9986-1f670b53e873/xigIHvZq62xP7dayHhC6.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/cce54c5a-b387-44fe-822b-f6c0bc0e5d3b/vVd32oKjFONMGFaZsiIr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:20.572Z"}
+{"mfr_sku":"FP980001","pattern_name":"Rangiroa","color_name":"Terre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP980001-rangiroa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Artist":"Véronique Villaret","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"130 cm / 51,18 inch","Repeat":"H: 130 cm - 51,00 inch | V: 144 cm - 56,69 inch | Straight repeat","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A"},"width":"130 cm / 51,18 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 130 cm - 51,00 inch | V: 144 cm - 56,69 inch | Straight repeat","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Rangiroa","description":"Wide width printed wallpapers - Paperbacked fabrics, Rangiroa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","https://static.pierrefrey.com/uploads/product/packshots/69fa0a95-92d6-44b8-bed3-70b76af19bc3/E7qildJCBkbOr6yVzsUs.webp","https://static.pierrefrey.com/uploads/product/packshots/1c67a5ab-b4e7-4994-8bdf-6d0709dc9fab/dhvdj46WQjTGhRrOa1S5.webp","https://static.pierrefrey.com/uploads/product/packshots/c7de495d-55a4-4ed9-826e-5dfc0e96dcff/bJ6plgGBMpKmzp2YIQlA.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp,https://static.pierrefrey.com/uploads/product/packshots/69fa0a95-92d6-44b8-bed3-70b76af19bc3/E7qildJCBkbOr6yVzsUs.webp,https://static.pierrefrey.com/uploads/product/packshots/1c67a5ab-b4e7-4994-8bdf-6d0709dc9fab/dhvdj46WQjTGhRrOa1S5.webp,https://static.pierrefrey.com/uploads/product/packshots/c7de495d-55a4-4ed9-826e-5dfc0e96dcff/bJ6plgGBMpKmzp2YIQlA.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:21.422Z"}
+{"mfr_sku":"W4630A04","pattern_name":"Wallpaper bananier","color_name":"Chocolate","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4630A04-wallpaper-bananier","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of","Backing":"PAPER","Composition":"-","Width":"91 cm / 35,82 inch","Repeat":"Straight repeat","Weight":"177 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"91 cm / 35,82 inch","composition":"-","material":"PAPER","pattern_repeat":"Straight repeat","weight":"177 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per roll of","roll_length":null,"collection":"Wallpaper bananier","description":"Small width printed wallpapers, Wallpaper bananier. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:22.238Z"}
+{"mfr_sku":"FP656002","pattern_name":"Princesse","color_name":"Belette","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP656002-princesse","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"41 % Cotton - 27 % Linen - 18 % Viscose - 14 % Polyester","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"480 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect"},"width":"130 cm / 51,18 inch","composition":"41 % Cotton - 27 % Linen - 18 % Viscose - 14 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"480 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Princesse","description":"Plains & semi plains - Paperbacked fabrics, Princesse. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","https://static.pierrefrey.com/uploads/product/packshots/b96ae79d-559a-4da2-9e7d-359968e02078/1ZeLOaAVIYK9PmxI7Lc9.webp","https://static.pierrefrey.com/uploads/product/packshots/822217a4-07a4-4ce2-94c1-c0ed53da2e74/S9ftO6cXZcHIVZs6UBUC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp,https://static.pierrefrey.com/uploads/product/packshots/b96ae79d-559a-4da2-9e7d-359968e02078/1ZeLOaAVIYK9PmxI7Lc9.webp,https://static.pierrefrey.com/uploads/product/packshots/822217a4-07a4-4ce2-94c1-c0ed53da2e74/S9ftO6cXZcHIVZs6UBUC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:23.139Z"}
+{"mfr_sku":"FP321001","pattern_name":"Bel ami","color_name":"Pastel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP321001-bel-ami","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"140 cm / 55,11 inch","Repeat":"V: 64 cm - 25,19 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"140 cm / 55,11 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"V: 64 cm - 25,19 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bel ami","description":"Wide width printed wallpapers, Bel ami. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp","https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp","https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp","https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp","https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp","https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp","https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp,https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp,https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp,https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp,https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp,https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp,https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:23.872Z"}
+{"mfr_sku":"FP531002","pattern_name":"Tenere","color_name":"Acajou","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP531002-tenere","list_image":"https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 32 cm - 12,59 inch | Straight repeat","Weight":"520 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","Notes":"Flame retardant backing | Extra washable"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 32 cm - 12,59 inch | Straight repeat","weight":"520 gr / m²","certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tenere","description":"Small width printed wallpapers - Vinyls, Tenere. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp","https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp","https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp","https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp","https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp","https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp","https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp","https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp","https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp,https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp,https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp,https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp,https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp,https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp,https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp,https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp,https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:24.540Z"}
+{"mfr_sku":"FP649001","pattern_name":"Catalina","color_name":"Naturel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP649001-catalina","list_image":"https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"280 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Catalina","description":"Paperbacked fabrics, Catalina. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:25.474Z"}
+{"mfr_sku":"FP863015","pattern_name":"Sofia","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP863015-sofia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"490 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY39"},"width":"130 cm / 51,18 inch","composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"490 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sofia","description":"Plains & semi plains - Paperbacked fabrics, Sofia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:26.216Z"}
+{"mfr_sku":"BP328006","pattern_name":"La comedie","color_name":"Bp328006","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP328006-la-comedie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"B9979PPBRAQ4"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"La comedie","description":"Small width printed wallpapers, La comedie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:27.131Z"}
+{"mfr_sku":"FP193002","pattern_name":"Aquarius","color_name":"Sand","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP193002-aquarius","list_image":"https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 69 cm - 27,16 inch | Half drop repeat","Weight":"173 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 69 cm - 27,16 inch | Half drop repeat","weight":"173 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Aquarius","description":"Small width printed wallpapers, Aquarius. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:28.083Z"}
+{"mfr_sku":"LP101004","pattern_name":"Madame tallien","color_name":"Vert Empire","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP101004-madame-tallien","list_image":"https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  5,45 mts","Backing":"PAPER","Composition":"-","Width":"57 cm / 22,44 inch","Repeat":"H: 57 cm - 22,00 inch | V: 120 cm - 47,24 inch | Straight repeat","Weight":"140 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"57 cm / 22,44 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 57 cm - 22,00 inch | V: 120 cm - 47,24 inch | Straight repeat","weight":"140 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  5,45 mts","roll_length":null,"collection":"Madame tallien","description":"Small width printed wallpapers, Madame tallien. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:28.873Z"}
+{"mfr_sku":"LP108002","pattern_name":"Plumettes","color_name":"Rose","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP108002-plumettes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,10 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 22 cm - 8,00 inch | V: 16 cm - 6,29 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Soaking time before hanging: maximum 2 minutes.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 22 cm - 8,00 inch | V: 16 cm - 6,29 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,10 mts","roll_length":null,"collection":"Plumettes","description":"Small width printed wallpapers, Plumettes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/e7a711a7-a131-4f19-883b-92d4e3f32211/3wIYH3A0eoIi2ZS1cGMD.webp","https://static.pierrefrey.com/uploads/product/packshots/5b165095-ee1f-4680-a8bd-7c8b35ac81a4/y8FDTMAyyPm72A3nBx9R.webp","https://static.pierrefrey.com/uploads/product/packshots/69cd0d72-253c-4f75-85b8-e96f860e885d/p6zYvoHDyn9UX8A7BXsJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8346139f-52a5-4f65-832d-df894dde42cf/7U9DSjPeQxYW2afTiZtd.webp","https://static.pierrefrey.com/uploads/product/packshots/f29f25c3-55c9-4bf5-939a-a7268dd85aec/KSUsGEwp1aUrOQhRWhNP.webp","https://static.pierrefrey.com/uploads/product/packshots/218bf3fa-cdba-4af3-b0fd-a77563aab061/zTQRh9zPzW16Tvu9Ll5h.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/e7a711a7-a131-4f19-883b-92d4e3f32211/3wIYH3A0eoIi2ZS1cGMD.webp,https://static.pierrefrey.com/uploads/product/packshots/5b165095-ee1f-4680-a8bd-7c8b35ac81a4/y8FDTMAyyPm72A3nBx9R.webp,https://static.pierrefrey.com/uploads/product/packshots/69cd0d72-253c-4f75-85b8-e96f860e885d/p6zYvoHDyn9UX8A7BXsJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8346139f-52a5-4f65-832d-df894dde42cf/7U9DSjPeQxYW2afTiZtd.webp,https://static.pierrefrey.com/uploads/product/packshots/f29f25c3-55c9-4bf5-939a-a7268dd85aec/KSUsGEwp1aUrOQhRWhNP.webp,https://static.pierrefrey.com/uploads/product/packshots/218bf3fa-cdba-4af3-b0fd-a77563aab061/zTQRh9zPzW16Tvu9Ll5h.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:29.756Z"}
+{"mfr_sku":"LP100001","pattern_name":"Le chariot chinois","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP100001-le-chariot-chinois","list_image":"https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  5,45 mts","Backing":"PAPER","Composition":"-","Width":"57 cm / 22,44 inch","Repeat":"H: 57 cm - 22,00 inch | V: 62 cm - 24,40 inch | Straight repeat","Weight":"140 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"57 cm / 22,44 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 57 cm - 22,00 inch | V: 62 cm - 24,40 inch | Straight repeat","weight":"140 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  5,45 mts","roll_length":null,"collection":"Le chariot chinois","description":"Small width printed wallpapers, Le chariot chinois. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:30.662Z"}
+{"mfr_sku":"FP654001","pattern_name":"Assouan","color_name":"Lin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP654001-assouan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"74 % Linen - 26 % Cotton","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"405 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect"},"width":"130 cm / 51,18 inch","composition":"74 % Linen - 26 % Cotton","material":"NON WOVEN","pattern_repeat":"Free match","weight":"405 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Assouan","description":"Plains & semi plains - Paperbacked fabrics, Assouan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:31.502Z"}
+{"mfr_sku":"FP655001","pattern_name":"Assouan blanchi","color_name":"Naturel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP655001-assouan-blanchi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"74 % Linen - 26 % Cotton","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"405 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect"},"width":"130 cm / 51,18 inch","composition":"74 % Linen - 26 % Cotton","material":"NON WOVEN","pattern_repeat":"Free match","weight":"405 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Assouan blanchi","description":"Plains & semi plains - Paperbacked fabrics, Assouan blanchi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:32.501Z"}
+{"mfr_sku":"BP334004","pattern_name":"Shiva","color_name":"Lin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334004-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:33.434Z"}
+{"mfr_sku":"FP514002","pattern_name":"Grand canyon","color_name":"Noir","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP514002-grand-canyon","list_image":"https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 95 cm - 37,40 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY14"},"width":"134 cm / 52,75 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 95 cm - 37,40 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Grand canyon","description":"Wide width printed wallpapers, Grand canyon. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg.webp","https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb.webp","https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd.webp","https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ.webp","https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp.webp","https://static.pierrefrey.com/uploads/product/packshots/e000ec10-0653-4ee5-8ad2-7da3ad2136fa/jk23AB8ArTekaxs5hcAt.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg.webp,https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb.webp,https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd.webp,https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ.webp,https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp.webp,https://static.pierrefrey.com/uploads/product/packshots/e000ec10-0653-4ee5-8ad2-7da3ad2136fa/jk23AB8ArTekaxs5hcAt.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:34.224Z"}
+{"mfr_sku":"LP101002","pattern_name":"Madame tallien","color_name":"Garance","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP101002-madame-tallien","list_image":"https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  5,45 mts","Backing":"PAPER","Composition":"-","Width":"57 cm / 22,44 inch","Repeat":"H: 57 cm - 22,00 inch | V: 120 cm - 47,24 inch | Straight repeat","Weight":"140 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"57 cm / 22,44 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 57 cm - 22,00 inch | V: 120 cm - 47,24 inch | Straight repeat","weight":"140 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  5,45 mts","roll_length":null,"collection":"Madame tallien","description":"Small width printed wallpapers, Madame tallien. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:35.121Z"}
+{"mfr_sku":"BP362004","pattern_name":"Ursuline","color_name":"Vert","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP362004-ursuline","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 59 cm - 23,22 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 59 cm - 23,22 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Ursuline","description":"Small width printed wallpapers, Ursuline. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:36.119Z"}
+{"mfr_sku":"FP609001","pattern_name":"Le parc","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP609001-le-parc","list_image":"https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Panoramic wallpapers","Sales Unit":"Full panoramic  476 cm x 300 cm ( 7 lengths  68 cm x 300 cm) - 187,40 in x 118,11 in( 7 lengths  26,77 in x 118,11 in)","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 476 cm - 187,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Sold as a complete artwork","Information":"2 rolls = 7 panels"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 476 cm - 187,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  476 cm x 300 cm ( 7 lengths  68 cm x 300 cm) - 187,40 in x 118,11 in( 7 lengths  26,77 in x 118,11 in)","roll_length":null,"collection":"Le parc","description":"Small width printed wallpapers - Panoramic wallpapers, Le parc. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp","https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp","https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp","https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp","https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp","https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp","https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp","https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp","https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/23ea1107-9eda-4d61-a580-dea7347733c7/venO5NRxaT8T8AWZWPsf.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp,https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp,https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp,https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp,https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp,https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp,https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp,https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp,https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/23ea1107-9eda-4d61-a580-dea7347733c7/venO5NRxaT8T8AWZWPsf.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/23ea1107-9eda-4d61-a580-dea7347733c7/venO5NRxaT8T8AWZWPsf.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:10:36.730Z"}
+{"mfr_sku":"FP020001","pattern_name":"Arnaud","color_name":"Perle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP020001-arnaud","list_image":"https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY43"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"460 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Arnaud","description":"Vinyls - Printed wallpapers, Arnaud. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:37.685Z"}
+{"mfr_sku":"FP323001","pattern_name":"Venus","color_name":"Nuage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP323001-venus","list_image":"https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"135 cm / 53,34 inch","Repeat":"V: 97 cm - 38,18 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"135 cm / 53,34 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"V: 97 cm - 38,18 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Venus","description":"Wide width printed wallpapers, Venus. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp","https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp","https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp","https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp","https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp","https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp","https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp,https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp,https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp,https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp,https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp,https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp,https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:38.386Z"}
+{"mfr_sku":"FP562003","pattern_name":"Nuages","color_name":"Mordore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP562003-nuages","list_image":"https://static.pierrefrey.com/uploads/product/packshots/24b1f7aa-748a-4d73-88e8-4bb639fcb976/zCfCt0R8nOFAU3i3wp4H_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,00 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant","Book":"F9979PPFREY18"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,00 mts","roll_length":null,"collection":"Nuages","description":"Small width printed wallpapers - Vinyls, Nuages. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/24b1f7aa-748a-4d73-88e8-4bb639fcb976/zCfCt0R8nOFAU3i3wp4H.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/24b1f7aa-748a-4d73-88e8-4bb639fcb976/zCfCt0R8nOFAU3i3wp4H.webp","https://static.pierrefrey.com/uploads/product/packshots/8a887629-6f6e-4eab-9ee0-6b765557d708/KTcdRQUkFQtAp5P7vVtC.webp","https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp","https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp","https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp","https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp","https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/24b1f7aa-748a-4d73-88e8-4bb639fcb976/zCfCt0R8nOFAU3i3wp4H.webp,https://static.pierrefrey.com/uploads/product/packshots/8a887629-6f6e-4eab-9ee0-6b765557d708/KTcdRQUkFQtAp5P7vVtC.webp,https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp,https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp,https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp,https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp,https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:39.003Z"}
+{"mfr_sku":"FP590002","pattern_name":"Ogaki","color_name":"Sepia","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP590002-ogaki","list_image":"https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 82 cm - 32,28 inch | Half drop repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing"},"width":"87 cm / 34,25 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 82 cm - 32,28 inch | Half drop repeat","weight":"240 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ogaki","description":"Small width printed wallpapers - Straws and similar materials, Ogaki. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp","https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp","https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp","https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp","https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp","https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp","https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp","https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp","https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp","https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp","https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp","https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp,https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp,https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp,https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp,https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp,https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp,https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp,https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp,https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp,https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp,https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp,https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:39.865Z"}
+{"mfr_sku":"FP843002","pattern_name":"Tamanrasset","color_name":"Desert","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP843002-tamanrasset","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 143 cm - 56,29 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 143 cm - 56,29 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tamanrasset","description":"Wide width printed wallpapers, Tamanrasset. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","https://static.pierrefrey.com/uploads/product/packshots/f067f1a9-2f07-4b69-b33d-eb9400e5a62e/FQYBwNq4XM173p8sVxAa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp,https://static.pierrefrey.com/uploads/product/packshots/f067f1a9-2f07-4b69-b33d-eb9400e5a62e/FQYBwNq4XM173p8sVxAa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:40.608Z"}
+{"mfr_sku":"FP652001","pattern_name":"Jake","color_name":"Naturel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP652001-jake","list_image":"https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"90 % Wool - 10 % Polyester","Width":"145 cm / 57,08 inch","Repeat":"Free match","Weight":"720 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect"},"width":"145 cm / 57,08 inch","composition":"90 % Wool - 10 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"720 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Jake","description":"Plains & semi plains - Paperbacked fabrics, Jake. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:41.384Z"}
+{"mfr_sku":"FP923003","pattern_name":"Suzette","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP923003-suzette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"29 % Linen - 28 % Wool - 19 % Polyester - 16 % Cotton - 8 % Polyamide","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"357 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"29 % Linen - 28 % Wool - 19 % Polyester - 16 % Cotton - 8 % Polyamide","material":"NON WOVEN","pattern_repeat":"Free match","weight":"357 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Suzette","description":"Paperbacked fabrics, Suzette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:42.124Z"}
+{"mfr_sku":"BP207003","pattern_name":"Wallpaper les muses et le lion","color_name":"Antique Blue","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP207003-wallpaper-les-muses-et-le-lion","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"71 cm / 27,95 inch","Repeat":"V: 74 cm - 29,13 inch | Straight repeat","Weight":"196 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"71 cm / 27,95 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 74 cm - 29,13 inch | Straight repeat","weight":"196 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper les muses et le lion","description":"Small width printed wallpapers, Wallpaper les muses et le lion. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:42.872Z"}
+{"mfr_sku":"FP925001","pattern_name":"Aurelie","color_name":"Nacre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP925001-aurelie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"93 % Polyester - 7 % Cotton","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"367 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Notes":"Good lightfastness","Information":"Panel effect","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"93 % Polyester - 7 % Cotton","material":"NON WOVEN","pattern_repeat":"Free match","weight":"367 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Aurelie","description":"Paperbacked fabrics, Aurelie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:43.705Z"}
+{"mfr_sku":"FP168003","pattern_name":"Wallpaper sans papillons","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP168003-wallpaper-sans-papillons","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 41 cm - 16,14 inch | Straight repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 41 cm - 16,14 inch | Straight repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper sans papillons","description":"Small width printed wallpapers, Wallpaper sans papillons. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/c4981731-5a17-4e66-9f5d-2a601a7513a1/9dsohfd0dYWzPa73TWIw.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/c4981731-5a17-4e66-9f5d-2a601a7513a1/9dsohfd0dYWzPa73TWIw.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:44.479Z"}
+{"mfr_sku":"FP026002","pattern_name":"Natacha","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP026002-natacha","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 43 cm - 16,92 inch | Straight repeat","Weight":"340 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Raised pattern","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"129 cm / 50,78 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 129 cm - 50,00 inch | V: 43 cm - 16,92 inch | Straight repeat","weight":"340 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Natacha","description":"Wide width printed wallpapers, Natacha. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","https://static.pierrefrey.com/uploads/product/packshots/51163c9c-16e6-457b-97dd-67d75b4a96f9/2sdVk3WdQatgOQdGmnV7.webp","https://static.pierrefrey.com/uploads/product/packshots/a0b36034-d5b8-4e74-aa1c-c7dcfa26434e/pbEeEHORYc3ahlt9j28S.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp,https://static.pierrefrey.com/uploads/product/packshots/51163c9c-16e6-457b-97dd-67d75b4a96f9/2sdVk3WdQatgOQdGmnV7.webp,https://static.pierrefrey.com/uploads/product/packshots/a0b36034-d5b8-4e74-aa1c-c7dcfa26434e/pbEeEHORYc3ahlt9j28S.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:45.451Z"}
+{"mfr_sku":"BP206003","pattern_name":"Wallpaper la fontaine","color_name":"Blue/Steel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP206003-wallpaper-la-fontaine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 50 cm - 19,68 inch | Straight repeat","Weight":"174 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 50 cm - 19,68 inch | Straight repeat","weight":"174 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper la fontaine","description":"Small width printed wallpapers, Wallpaper la fontaine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:46.281Z"}
+{"mfr_sku":"BP370001","pattern_name":"Chantonnay","color_name":"Miel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP370001-chantonnay","list_image":"https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 104 cm - 40,94 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"B9979PPBRAQ9"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 104 cm - 40,94 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Chantonnay","description":"Wide width printed wallpapers, Chantonnay. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/f4e3e6a4-6b09-4b8d-974a-13da81b34f1a/SEdsMbP0nUxdDEihwENR.webp","https://static.pierrefrey.com/uploads/product/packshots/42786797-4625-4af3-b2df-d958df113f5b/98LWxltHWbV8bbA6Iw32.webp","https://static.pierrefrey.com/uploads/product/packshots/1080696f-4775-4a50-899a-bbd4b2de257f/3kGDuj7c8eiW8Mf1oiP2.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/f4e3e6a4-6b09-4b8d-974a-13da81b34f1a/SEdsMbP0nUxdDEihwENR.webp,https://static.pierrefrey.com/uploads/product/packshots/42786797-4625-4af3-b2df-d958df113f5b/98LWxltHWbV8bbA6Iw32.webp,https://static.pierrefrey.com/uploads/product/packshots/1080696f-4775-4a50-899a-bbd4b2de257f/3kGDuj7c8eiW8Mf1oiP2.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:47.405Z"}
+{"mfr_sku":"FP644002","pattern_name":"Chloe","color_name":"Perle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP644002-chloe","list_image":"https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"68 % Polyester - 18 % Linen - 11 % Cotton - 3 % Acrylic","Width":"140 cm / 55,11 inch","Repeat":"H: 72 cm - 28,00 inch | V: 58 cm - 22,83 inch | Free match","Weight":"510 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect"},"width":"140 cm / 55,11 inch","composition":"68 % Polyester - 18 % Linen - 11 % Cotton - 3 % Acrylic","material":"NON WOVEN","pattern_repeat":"H: 72 cm - 28,00 inch | V: 58 cm - 22,83 inch | Free match","weight":"510 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Chloe","description":"Paperbacked fabrics, Chloe. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:48.250Z"}
+{"mfr_sku":"FP937001","pattern_name":"Maud","color_name":"001","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP937001-maud","list_image":"https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"500 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect","Book":"F9979PPFREY36"},"width":"130 cm / 51,18 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"500 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Maud","description":"Plains & semi plains - Paperbacked fabrics, Maud. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:49.084Z"}
+{"mfr_sku":"FP957002","pattern_name":"Lucille","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP957002-lucille","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 163 cm - 64,17 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 163 cm - 64,17 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Lucille","description":"Wide width printed wallpapers, Lucille. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/76974ed4-a7aa-4a20-a85a-751a44112bcc/OzbMQHqFs9j3Fc2MYfuZ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/76974ed4-a7aa-4a20-a85a-751a44112bcc/OzbMQHqFs9j3Fc2MYfuZ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:49.919Z"}
+{"mfr_sku":"W4669003","pattern_name":"Wallpaper radzimir","color_name":"Ochre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4669003-wallpaper-radzimir","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 90 cm - 35,43 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 90 cm - 35,43 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper radzimir","description":"Small width printed wallpapers, Wallpaper radzimir. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:50.867Z"}
+{"mfr_sku":"FP966002","pattern_name":"Castellaras","color_name":"Mexico","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP966002-castellaras","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 60 cm - 23,62 inch | Half drop repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"PAPER","pattern_repeat":"H: 68 cm - 26,00 inch | V: 60 cm - 23,62 inch | Half drop repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Castellaras","description":"Small width printed wallpapers - Vinyls, Castellaras. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:51.643Z"}
+{"mfr_sku":"FP067001","pattern_name":"Cascade","color_name":"Soleil","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP067001-cascade","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 79 cm - 31,10 inch | Straight repeat","Weight":"465 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY45"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 79 cm - 31,10 inch | Straight repeat","weight":"465 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cascade","description":"Vinyls - Printed wallpapers, Cascade. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:52.561Z"}
+{"mfr_sku":"FP502001","pattern_name":"Shaman","color_name":"Black","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP502001-shaman","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Noémie Vallerand & Carine Prache","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 205 cm - 80,70 inch | Half drop repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 205 cm - 80,70 inch | Half drop repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shaman","description":"Wide width printed wallpapers, Shaman. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp.webp","https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb.webp","https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd.webp","https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ.webp","https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg.webp","https://static.pierrefrey.com/uploads/product/packshots/e4db3f53-0dc8-4fe8-92df-4ff94e0a8570/0FwyvfQg4oftwccFm5MJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp.webp,https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb.webp,https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd.webp,https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ.webp,https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg.webp,https://static.pierrefrey.com/uploads/product/packshots/e4db3f53-0dc8-4fe8-92df-4ff94e0a8570/0FwyvfQg4oftwccFm5MJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:53.349Z"}
+{"mfr_sku":"FP028001","pattern_name":"Petunia","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP028001-petunia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"135 cm / 53,14 inch","Repeat":"Free match","Weight":"250 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"135 cm / 53,14 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"250 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Petunia","description":"Paperbacked fabrics, Petunia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:54.311Z"}
+{"mfr_sku":"BP373001","pattern_name":"Le grand genois","color_name":"Hortensia","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP373001-le-grand-genois","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Panoramic wallpapers","Sales Unit":"Full panoramic  300 cm x 210 cm ( 3 lengths  70 cm x 210 cm) - 118,11 in x  82,67 in( 3 lengths  27,55 in x  82,67 in)","Backing":"NON WOVEN","Composition":"-","Width":"70 cm / 27,55 inch","Repeat":"H: 210 cm - 82,00 inch | V: 300 cm - 118,11 inch","Weight":"185 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 3 panels"},"width":"70 cm / 27,55 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 210 cm - 82,00 inch | V: 300 cm - 118,11 inch","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  300 cm x 210 cm ( 3 lengths  70 cm x 210 cm) - 118,11 in x  82,67 in( 3 lengths  27,55 in x  82,67 in)","roll_length":null,"collection":"Le grand genois","description":"Small width printed wallpapers - Panoramic wallpapers, Le grand genois. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/6502f58c-f2d4-458e-9779-507dd5bd6c4c/7oYrNDzU2TbehYXC5Lpo.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/TJ2GkqMbTQCYUggWKPan.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/6502f58c-f2d4-458e-9779-507dd5bd6c4c/7oYrNDzU2TbehYXC5Lpo.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/TJ2GkqMbTQCYUggWKPan.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/TJ2GkqMbTQCYUggWKPan.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:10:55.375Z"}
+{"mfr_sku":"FP650002","pattern_name":"Melchior","color_name":"Lenaturel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP650002-melchior","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"130 cm / 51,18 inch","Weight":"252 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":null,"weight":"252 gr / m²","certifications":"EUROCLASS C-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Melchior","description":"Plains & semi plains - Paperbacked fabrics, Melchior. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:56.179Z"}
+{"mfr_sku":"FP770004","pattern_name":"Les singes savants","color_name":"Turquois","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP770004-les-singes-savants","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Artist":"Dessin Harrison Howard","Collaboration":"Maison Caspari","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"97 cm / 38,18 inch","Repeat":"H: 97 cm - 38,00 inch | V: 135 cm - 53,14 inch | Half drop repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness"},"width":"97 cm / 38,18 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 97 cm - 38,00 inch | V: 135 cm - 53,14 inch | Half drop repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les singes savants","description":"Wide width printed wallpapers - Vinyls, Les singes savants. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp","https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp","https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp","https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp","https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp","https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp","https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp","https://static.pierrefrey.com/uploads/product/packshots/290613ee-c487-42cd-a779-f43e5385d2fa/Veb3mjD7YLOQB90VzC0r.webp","https://static.pierrefrey.com/uploads/product/packshots/bff841c5-6af3-47eb-b7a2-477d14250ee1/4rwLR1Hw3Xrnwf8k0ZXa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp,https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp,https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp,https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp,https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp,https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp,https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp,https://static.pierrefrey.com/uploads/product/packshots/290613ee-c487-42cd-a779-f43e5385d2fa/Veb3mjD7YLOQB90VzC0r.webp,https://static.pierrefrey.com/uploads/product/packshots/bff841c5-6af3-47eb-b7a2-477d14250ee1/4rwLR1Hw3Xrnwf8k0ZXa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:56.815Z"}
+{"mfr_sku":"LP109004","pattern_name":"Hankeou","color_name":"Kaki","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP109004-hankeou","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  3,66 mts","Backing":"PAPER","Composition":"-","Width":"91 cm / 35,82 inch","Repeat":"H: 92 cm - 36,00 inch | V: 111 cm - 43,70 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"91 cm / 35,82 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 92 cm - 36,00 inch | V: 111 cm - 43,70 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  3,66 mts","roll_length":null,"collection":"Hankeou","description":"Small width printed wallpapers, Hankeou. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:57.815Z"}
+{"mfr_sku":"FP648006","pattern_name":"Ernesto","color_name":"Nuage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP648006-ernesto","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe_251x335_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"85 % Polyester - 15 % Acrylic","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"270 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY35"},"width":"140 cm / 55,11 inch","composition":"85 % Polyester - 15 % Acrylic","material":"NON WOVEN","pattern_repeat":"Free match","weight":"270 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ernesto","description":"Plains & semi plains - Paperbacked fabrics, Ernesto. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:58.703Z"}
+{"mfr_sku":"LP107004","pattern_name":"Pommes de pin","color_name":"CéLadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP107004-pommes-de-pin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 23 cm - 9,00 inch | V: 61 cm - 24,01 inch | Straight repeat","Weight":"140 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 23 cm - 9,00 inch | V: 61 cm - 24,01 inch | Straight repeat","weight":"140 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Pommes de pin","description":"Small width printed wallpapers, Pommes de pin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/7ccd920b-6ab0-43d9-9fde-879b8ffdffa1/anYHQftsWM4vdhP5rR6H.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/7ccd920b-6ab0-43d9-9fde-879b8ffdffa1/anYHQftsWM4vdhP5rR6H.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:10:59.508Z"}
+{"mfr_sku":"FP568001","pattern_name":"Fontaine et animaux barbouillage","color_name":"Noir/Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP568001-fontaine-et-animaux-barbouillage","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Christian Astuguevieille","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 176 cm - 69,29 inch | Offset repeat 1/3","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"140 cm / 55,11 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 176 cm - 69,29 inch | Offset repeat 1/3","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fontaine et animaux barbouillage","description":"Wide width printed wallpapers, Fontaine et animaux barbouillage. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp","https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp","https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp","https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp","https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp","https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp","https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp","https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp","https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp","https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp","https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp","https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp,https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp,https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp,https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp,https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp,https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp,https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp,https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp,https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp,https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp,https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp,https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:00.262Z"}
+{"mfr_sku":"FP472002","pattern_name":"Mako","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP472002-mako","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Extra washable | Stain and impact resistant","Book":"F9979PPFREY10"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Mako","description":"Small width printed wallpapers - Vinyls, Mako. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp","https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp","https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp","https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp","https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp,https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp,https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp,https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp,https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:01.020Z"}
+{"mfr_sku":"BP324009","pattern_name":"La route de la soie","color_name":"Or","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP324009-la-route-de-la-soie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"280 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La route de la soie","description":"Plains & semi plains - Paperbacked fabrics, La route de la soie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp","https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp","https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp","https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp","https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp","https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp","https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp","https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp,https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp,https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp,https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp,https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp,https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp,https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp,https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:02.202Z"}
+{"mfr_sku":"FP031002","pattern_name":"Astou","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP031002-astou","list_image":"https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"135 cm / 53,14 inch","Repeat":"H: 135 cm - 53,00 inch | V: 64 cm - 25,19 inch | Free match","Weight":"375 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","Notes":"Raised pattern","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"135 cm / 53,14 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 135 cm - 53,00 inch | V: 64 cm - 25,19 inch | Free match","weight":"375 gr / m²","certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Astou","description":"Wide width printed wallpapers - Embossed patterns, Astou. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:03.174Z"}
+{"mfr_sku":"FP494001","pattern_name":"Bonsai","color_name":"Pistache","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP494001-bonsai","list_image":"https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 75 cm - 29,52 inch | Half drop repeat","Weight":"295 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 75 cm - 29,52 inch | Half drop repeat","weight":"295 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bonsai","description":"Straws and similar materials - Printed wallpapers, Bonsai. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","https://static.pierrefrey.com/uploads/product/packshots/544ed4c3-1a6c-45ed-a4df-407d5644797c/fMSp1bMzYnxXon4I5MsQ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp,https://static.pierrefrey.com/uploads/product/packshots/544ed4c3-1a6c-45ed-a4df-407d5644797c/fMSp1bMzYnxXon4I5MsQ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:04.110Z"}
+{"mfr_sku":"FP573001","pattern_name":"Beau monde","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP573001-beau-monde","list_image":"https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Noëmie Vallerand","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 149 cm - 58,66 inch | Half drop repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 149 cm - 58,66 inch | Half drop repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Beau monde","description":"Wide width printed wallpapers, Beau monde. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp","https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp","https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp","https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp","https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp","https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp","https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp","https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp","https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp","https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp","https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp","https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp","https://static.pierrefrey.com/uploads/product/packshots/59163291-bcc5-4420-bffb-5be60d607fef/3MEbLKxSSaV8irzEaV09.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp,https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp,https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp,https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp,https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp,https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp,https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp,https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp,https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp,https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp,https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp,https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp,https://static.pierrefrey.com/uploads/product/packshots/59163291-bcc5-4420-bffb-5be60d607fef/3MEbLKxSSaV8irzEaV09.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:04.863Z"}
+{"mfr_sku":"FP534001","pattern_name":"Coban","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP534001-coban","list_image":"https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Extra washable"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Coban","description":"Small width printed wallpapers - Vinyls, Coban. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp","https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp","https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp","https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp","https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp","https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp","https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp","https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp","https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp,https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp,https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp,https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp,https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp,https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp,https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp,https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp,https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:05.517Z"}
+{"mfr_sku":"FP320001","pattern_name":"Mauritius","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP320001-mauritius","list_image":"https://static.pierrefrey.com/uploads/product/packshots/319c7d51-4ecf-4ee2-b4bd-51b0b403c17f/5NrXANIFfOmXN1GjBq0Y_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"140 cm / 55,11 inch","Repeat":"V: 100 cm - 39,37 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"140 cm / 55,11 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"V: 100 cm - 39,37 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mauritius","description":"Wide width printed wallpapers, Mauritius. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/319c7d51-4ecf-4ee2-b4bd-51b0b403c17f/5NrXANIFfOmXN1GjBq0Y.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/319c7d51-4ecf-4ee2-b4bd-51b0b403c17f/5NrXANIFfOmXN1GjBq0Y.webp","https://static.pierrefrey.com/uploads/product/packshots/4d2a9406-5b1a-4c02-80d7-6bc8e377adb1/IBAJiIK8SPLItTgX9zk3.webp","https://static.pierrefrey.com/uploads/product/packshots/de1705e3-02e4-435e-a649-10ea62c3270a/ISPjJWz6LkZLv1mDW1cm.webp","https://static.pierrefrey.com/uploads/product/packshots/7e8abc59-aaee-460e-bfc7-2246f4ad7672/3OfiJhUX0OGYpc3c9I31.webp","https://static.pierrefrey.com/uploads/product/packshots/15ea38a8-541f-4e79-a11d-2b9dc90e3e8f/to8KmLhihnHaaGTPo4RX.webp","https://static.pierrefrey.com/uploads/product/packshots/c73e4057-2b3c-4c36-9784-8bdefc820b3c/NyYNGrS7ybeGMWmhthYd.webp","https://static.pierrefrey.com/uploads/product/packshots/266b27f6-6351-462e-afe5-d3e669118cb2/GTTDNwPmtShz5IV4BqJI.webp","https://static.pierrefrey.com/uploads/product/packshots/77796aa8-6692-47d9-8dac-6e76c0ec9bd4/XNmv7pfXI9102N2VaTzM.webp","https://static.pierrefrey.com/uploads/product/packshots/7d56f044-075d-4171-8c41-3f38990ffe75/BegiLQaIzzWLX7IdGpaZ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/319c7d51-4ecf-4ee2-b4bd-51b0b403c17f/5NrXANIFfOmXN1GjBq0Y.webp,https://static.pierrefrey.com/uploads/product/packshots/4d2a9406-5b1a-4c02-80d7-6bc8e377adb1/IBAJiIK8SPLItTgX9zk3.webp,https://static.pierrefrey.com/uploads/product/packshots/de1705e3-02e4-435e-a649-10ea62c3270a/ISPjJWz6LkZLv1mDW1cm.webp,https://static.pierrefrey.com/uploads/product/packshots/7e8abc59-aaee-460e-bfc7-2246f4ad7672/3OfiJhUX0OGYpc3c9I31.webp,https://static.pierrefrey.com/uploads/product/packshots/15ea38a8-541f-4e79-a11d-2b9dc90e3e8f/to8KmLhihnHaaGTPo4RX.webp,https://static.pierrefrey.com/uploads/product/packshots/c73e4057-2b3c-4c36-9784-8bdefc820b3c/NyYNGrS7ybeGMWmhthYd.webp,https://static.pierrefrey.com/uploads/product/packshots/266b27f6-6351-462e-afe5-d3e669118cb2/GTTDNwPmtShz5IV4BqJI.webp,https://static.pierrefrey.com/uploads/product/packshots/77796aa8-6692-47d9-8dac-6e76c0ec9bd4/XNmv7pfXI9102N2VaTzM.webp,https://static.pierrefrey.com/uploads/product/packshots/7d56f044-075d-4171-8c41-3f38990ffe75/BegiLQaIzzWLX7IdGpaZ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:06.211Z"}
+{"mfr_sku":"FP787004","pattern_name":"Fleurs de corail","color_name":"Marine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP787004-fleurs-de-corail","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 22 cm - 8,66 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 22 cm - 8,66 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Fleurs de corail","description":"Small width printed wallpapers, Fleurs de corail. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:06.957Z"}
+{"mfr_sku":"FP353001","pattern_name":"Tam tam","color_name":"Ficelle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP353001-tam-tam","list_image":"https://static.pierrefrey.com/uploads/product/packshots/328b3da0-022b-4f42-80b5-3e25c5765910/1RJKzNyREdT4WbT7LsE5_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"60 % Cotton - 40 % Polyamide","Width":"134 cm / 52,75 inch","Repeat":"H: 6 cm - 2,00 inch | V: 17 cm - 6,69 inch | Half drop repeat","Weight":"305 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"60 % Cotton - 40 % Polyamide","material":"NON WOVEN","pattern_repeat":"H: 6 cm - 2,00 inch | V: 17 cm - 6,69 inch | Half drop repeat","weight":"305 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tam tam","description":"Paperbacked fabrics - Straws and similar materials, Tam tam. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/328b3da0-022b-4f42-80b5-3e25c5765910/1RJKzNyREdT4WbT7LsE5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/328b3da0-022b-4f42-80b5-3e25c5765910/1RJKzNyREdT4WbT7LsE5.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/328b3da0-022b-4f42-80b5-3e25c5765910/1RJKzNyREdT4WbT7LsE5.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:07.712Z"}
+{"mfr_sku":"FP424001","pattern_name":"Nubem","color_name":"Nubem","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP424001-nubem","list_image":"https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM_251x335_webp.webp","specs":{"Type":"End-on-end threads - Wide width printed wallpapers - Panoramic wallpapers","Artist":"Benjamin Graindorge","Sales Unit":"Full panoramic  200 cm x 253 cm ( 2 lengths 100 cm x 253 cm) -  78,74 in x  99,60 in( 2 lengths  39,37 in x  99,60 in)","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"100 cm / 39,37 inch","Repeat":"H: 200 cm - 78,00 inch | V: 252 cm - 99,21 inch | Straight repeat","Weight":"226 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Sold as a complete artwork","Information":"1 roll = 2 panels"},"width":"100 cm / 39,37 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 200 cm - 78,00 inch | V: 252 cm - 99,21 inch | Straight repeat","weight":"226 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Full panoramic  200 cm x 253 cm ( 2 lengths 100 cm x 253 cm) -  78,74 in x  99,60 in( 2 lengths  39,37 in x  99,60 in)","roll_length":null,"collection":"Nubem","description":"End-on-end threads - Wide width printed wallpapers - Panoramic wallpapers, Nubem. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM.webp","https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct.webp","https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI.webp","https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT.webp","https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8.webp","https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/P1SLROJvcEShREBWcm6l.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM.webp,https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct.webp,https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI.webp,https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT.webp,https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8.webp,https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/P1SLROJvcEShREBWcm6l.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/P1SLROJvcEShREBWcm6l.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:11:08.411Z"}
+{"mfr_sku":"BP336001","pattern_name":"Toile des indes","color_name":"Jaune","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP336001-toile-des-indes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 61 cm - 24,01 inch | Half drop repeat","Weight":"150 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"B9979PPBRAQ4"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 61 cm - 24,01 inch | Half drop repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Toile des indes","description":"Small width printed wallpapers, Toile des indes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/a70c2596-e9e8-4a80-ac32-02572240d47a/NCTo6xZ0oWd7Z51SPnCI.webp","https://static.pierrefrey.com/uploads/product/packshots/44c47ab0-8cbb-4dcd-8b5d-c1d9e0a7bf3b/h4NzyJ306oZnHvzb5OqO.webp","https://static.pierrefrey.com/uploads/product/packshots/5488ded9-41b6-4e9a-891e-21a12e12a188/v0bda3LZAMVcgQAMZ1UZ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/a70c2596-e9e8-4a80-ac32-02572240d47a/NCTo6xZ0oWd7Z51SPnCI.webp,https://static.pierrefrey.com/uploads/product/packshots/44c47ab0-8cbb-4dcd-8b5d-c1d9e0a7bf3b/h4NzyJ306oZnHvzb5OqO.webp,https://static.pierrefrey.com/uploads/product/packshots/5488ded9-41b6-4e9a-891e-21a12e12a188/v0bda3LZAMVcgQAMZ1UZ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:09.143Z"}
+{"mfr_sku":"FP017001","pattern_name":"Le touquet","color_name":"Croisiere","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP017001-le-touquet","list_image":"https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"84 cm / 33,07 inch","Repeat":"H: 84 cm - 33,00 inch | V: 84 cm - 33,07 inch | Half drop repeat","Weight":"265 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY41"},"width":"84 cm / 33,07 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 84 cm - 33,00 inch | V: 84 cm - 33,07 inch | Half drop repeat","weight":"265 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le touquet","description":"Paperbacked fabrics - Printed wallpapers, Le touquet. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:09.984Z"}
+{"mfr_sku":"W4630A03","pattern_name":"Wallpaper bananier","color_name":"Olive","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4630A03-wallpaper-bananier","list_image":"https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of","Backing":"PAPER","Composition":"-","Width":"91 cm / 35,82 inch","Repeat":"Straight repeat","Weight":"177 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"91 cm / 35,82 inch","composition":"-","material":"PAPER","pattern_repeat":"Straight repeat","weight":"177 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per roll of","roll_length":null,"collection":"Wallpaper bananier","description":"Small width printed wallpapers, Wallpaper bananier. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:10.863Z"}
+{"mfr_sku":"FP863014","pattern_name":"Sofia","color_name":"Opale","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP863014-sofia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"490 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY39"},"width":"130 cm / 51,18 inch","composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"490 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sofia","description":"Plains & semi plains - Paperbacked fabrics, Sofia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:11.580Z"}
+{"mfr_sku":"FP780001","pattern_name":"Atelier jean","color_name":"Craft","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP780001-atelier-jean","list_image":"https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Atelier Buffile","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 156 cm - 61,41 inch | Half drop repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 156 cm - 61,41 inch | Half drop repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Atelier jean","description":"Wide width printed wallpapers, Atelier jean. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:12.319Z"}
+{"mfr_sku":"FP583001","pattern_name":"La serre aux papillons","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP583001-la-serre-aux-papillons","list_image":"https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"138 cm / 54,33 inch","Repeat":"H: 138 cm - 54,00 inch | V: 61 cm - 24,01 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"138 cm / 54,33 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 138 cm - 54,00 inch | V: 61 cm - 24,01 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La serre aux papillons","description":"Wide width printed wallpapers, La serre aux papillons. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp","https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp","https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp","https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp","https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp","https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp","https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp","https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp","https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp","https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp","https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp","https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp","https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp","https://static.pierrefrey.com/uploads/product/packshots/07f60677-a6ed-4818-957e-6910cea0f2a5/ZqbxHIFolLZo2eSkuxDJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp,https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp,https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp,https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp,https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp,https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp,https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp,https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp,https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp,https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp,https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp,https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp,https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp,https://static.pierrefrey.com/uploads/product/packshots/07f60677-a6ed-4818-957e-6910cea0f2a5/ZqbxHIFolLZo2eSkuxDJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:13.196Z"}
+{"mfr_sku":"BP334026","pattern_name":"Shiva","color_name":"Poudre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334026-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:13.953Z"}
+{"mfr_sku":"FP495001","pattern_name":"Happy monkey","color_name":"Noir","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP495001-happy-monkey","list_image":"https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 130 cm - 51,18 inch | Offset repeat 1/4","Weight":"295 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 130 cm - 51,18 inch | Offset repeat 1/4","weight":"295 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Happy monkey","description":"Straws and similar materials - Printed wallpapers, Happy monkey. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:14.764Z"}
+{"mfr_sku":"BP204002","pattern_name":"Le grand corail","color_name":"Ochre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP204002-le-grand-corail","list_image":"https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 122 cm - 48,03 inch | Half drop repeat","Weight":"174 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 68 cm - 26,00 inch | V: 122 cm - 48,03 inch | Half drop repeat","weight":"174 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Le grand corail","description":"Small width printed wallpapers, Le grand corail. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/bcfcb3ac-a550-4dba-b3d8-a05ee2763d4e/ePxIUrvVgRBZxyWni0yX.webp","https://static.pierrefrey.com/uploads/product/packshots/4cdb57a4-482d-480a-80ac-a83d2f0a98c7/X28H65P6RNwEvlXFrn5U.webp","https://static.pierrefrey.com/uploads/product/packshots/7f7d6688-ff26-4171-8519-1103b3e4679c/XKKbBDA5qD2Y5X9WCWKC.webp","https://static.pierrefrey.com/uploads/product/packshots/bad08a74-23dc-44a5-888d-753eea6fd9e9/oaFfCJNfbbzEtU67upg2.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/bcfcb3ac-a550-4dba-b3d8-a05ee2763d4e/ePxIUrvVgRBZxyWni0yX.webp,https://static.pierrefrey.com/uploads/product/packshots/4cdb57a4-482d-480a-80ac-a83d2f0a98c7/X28H65P6RNwEvlXFrn5U.webp,https://static.pierrefrey.com/uploads/product/packshots/7f7d6688-ff26-4171-8519-1103b3e4679c/XKKbBDA5qD2Y5X9WCWKC.webp,https://static.pierrefrey.com/uploads/product/packshots/bad08a74-23dc-44a5-888d-753eea6fd9e9/oaFfCJNfbbzEtU67upg2.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:15.596Z"}
+{"mfr_sku":"FP964002","pattern_name":"Touareg","color_name":"Desert","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP964002-touareg","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 118 cm - 46,45 inch | Straight repeat","Weight":"242 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 118 cm - 46,45 inch | Straight repeat","weight":"242 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Touareg","description":"Small width printed wallpapers - Straws and similar materials, Touareg. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:16.533Z"}
+{"mfr_sku":"FP053003","pattern_name":"Fuji","color_name":"Terre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP053003-fuji","list_image":"https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Cotton","Width":"117 cm / 46,06 inch","Repeat":"H: 19 cm - 7,00 inch | V: 2 cm - 0,78 inch | Free match","Weight":"365 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY44"},"width":"117 cm / 46,06 inch","composition":"100 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 19 cm - 7,00 inch | V: 2 cm - 0,78 inch | Free match","weight":"365 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fuji","description":"Paperbacked fabrics, Fuji. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:17.425Z"}
+{"mfr_sku":"BP300001","pattern_name":"Wallpaper la roziere - fond uni","color_name":"Origine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP300001-wallpaper-la-roziere-fond-uni","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"RL","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"V: 61 cm - 24,01 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"V: 61 cm - 24,01 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"RL","roll_length":null,"collection":"Wallpaper la roziere - fond uni","description":"Small width printed wallpapers, Wallpaper la roziere - fond uni. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:18.542Z"}
+{"mfr_sku":"FP924002","pattern_name":"Carole","color_name":"Greige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP924002-carole","list_image":"https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"53 % Polyester - 47 % Linen","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"359 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"53 % Polyester - 47 % Linen","material":"NON WOVEN","pattern_repeat":"Free match","weight":"359 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Carole","description":"Plains & semi plains - Paperbacked fabrics, Carole. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:19.458Z"}
+{"mfr_sku":"W4864004","pattern_name":"Wallpaper nakai","color_name":"Lime","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4864004-wallpaper-nakai","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 59 cm - 23,22 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 59 cm - 23,22 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper nakai","description":"Small width printed wallpapers, Wallpaper nakai. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","https://static.pierrefrey.com/uploads/product/packshots/e10dad45-46a8-4d65-9b6c-ae92fb743c13/KzELlwvD40J1DVPJc3UR.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp,https://static.pierrefrey.com/uploads/product/packshots/e10dad45-46a8-4d65-9b6c-ae92fb743c13/KzELlwvD40J1DVPJc3UR.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:20.283Z"}
+{"mfr_sku":"FP614001","pattern_name":"Perspectives imaginaires","color_name":"Mineral","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP614001-perspectives-imaginaires","list_image":"https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc_251x335_webp.webp","specs":{"Type":"End-on-end threads - Small width printed wallpapers - Panoramic wallpapers","Artist":"Luc Deflandre","Sales Unit":"Full panoramic  200 cm x 300 cm ( 2 lengths 100 cm x 300 cm) -  78,74 in x 118,11 in( 2 lengths  39,37 in x 118,11 in)","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"100 cm / 39,37 inch","Repeat":"H: 200 cm - 78,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"345 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Sold as a complete artwork","Information":"1 roll = 2 panels"},"width":"100 cm / 39,37 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 200 cm - 78,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"345 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  200 cm x 300 cm ( 2 lengths 100 cm x 300 cm) -  78,74 in x 118,11 in( 2 lengths  39,37 in x 118,11 in)","roll_length":null,"collection":"Perspectives imaginaires","description":"End-on-end threads - Small width printed wallpapers - Panoramic wallpapers, Perspectives imaginaires. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp","https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp","https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp","https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp","https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp","https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp","https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp","https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/374ded9d-279e-4227-8bf5-e273218cadbf/CU7MSrN9KoywCZNXnpVX.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp,https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp,https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp,https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp,https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp,https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp,https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp,https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/374ded9d-279e-4227-8bf5-e273218cadbf/CU7MSrN9KoywCZNXnpVX.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/374ded9d-279e-4227-8bf5-e273218cadbf/CU7MSrN9KoywCZNXnpVX.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:11:21.071Z"}
+{"mfr_sku":"FP883001","pattern_name":"Shout","color_name":"Greige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP883001-shout","list_image":"https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Collaboration":"Musée du Louvre","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY32 | F9979PPFREY37"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shout","description":"Wide width printed wallpapers, Shout. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp","https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp","https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp","https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp","https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp,https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp,https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp,https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp,https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:21.783Z"}
+{"mfr_sku":"LP106003","pattern_name":"Madame elisabeth","color_name":"OcéAn","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP106003-madame-elisabeth","list_image":"https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 69 cm - 27,00 inch | V: 31 cm - 12,20 inch | Straight repeat","Weight":"140 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 69 cm - 27,00 inch | V: 31 cm - 12,20 inch | Straight repeat","weight":"140 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Madame elisabeth","description":"Small width printed wallpapers, Madame elisabeth. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/ff93dc8a-36da-4b1a-96ac-91431fa06b4c/QbGuy4QIWs7P7vU9Fl5v.webp","https://static.pierrefrey.com/uploads/product/packshots/76ce6cda-0f8f-4d56-b0e0-6f2d2c7e985b/A5ZqEmZJ8lDtzEBTAtft.webp","https://static.pierrefrey.com/uploads/product/packshots/1141d5d5-ac24-47a6-a310-93a9b3009820/gAcT2obJq0Qr4y5Sr2jv.webp","https://static.pierrefrey.com/uploads/product/packshots/86da4c60-5828-4c59-8b5e-cff8632a5a64/7i1IWSg5xGuqBqZobKTr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/ff93dc8a-36da-4b1a-96ac-91431fa06b4c/QbGuy4QIWs7P7vU9Fl5v.webp,https://static.pierrefrey.com/uploads/product/packshots/76ce6cda-0f8f-4d56-b0e0-6f2d2c7e985b/A5ZqEmZJ8lDtzEBTAtft.webp,https://static.pierrefrey.com/uploads/product/packshots/1141d5d5-ac24-47a6-a310-93a9b3009820/gAcT2obJq0Qr4y5Sr2jv.webp,https://static.pierrefrey.com/uploads/product/packshots/86da4c60-5828-4c59-8b5e-cff8632a5a64/7i1IWSg5xGuqBqZobKTr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:22.682Z"}
+{"mfr_sku":"FP024002","pattern_name":"Tyler","color_name":"Perle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP024002-tyler","list_image":"https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 166 cm - 65,35 inch | Straight repeat","Weight":"235 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY43"},"width":"129 cm / 50,78 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 129 cm - 50,00 inch | V: 166 cm - 65,35 inch | Straight repeat","weight":"235 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tyler","description":"Small width printed wallpapers - Paperbacked fabrics, Tyler. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:23.618Z"}
+{"mfr_sku":"FP917003","pattern_name":"James","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP917003-james","list_image":"https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"73 % Linen - 20 % Viscose - 7 % Polyamide","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"185 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"73 % Linen - 20 % Viscose - 7 % Polyamide","material":"NON WOVEN","pattern_repeat":"Free match","weight":"185 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"James","description":"Plains & semi plains - Paperbacked fabrics, James. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:24.467Z"}
+{"mfr_sku":"BP328001","pattern_name":"La comedie","color_name":"Bp328001","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP328001-la-comedie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"B9979PPBRAQ4"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"La comedie","description":"Small width printed wallpapers, La comedie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:25.243Z"}
+{"mfr_sku":"FP003002","pattern_name":"Les maldives","color_name":"Ocean","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP003002-les-maldives","list_image":"https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Fanny Lebon","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 131 cm - 51,57 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY41"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 131 cm - 51,57 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les maldives","description":"Wide width printed wallpapers, Les maldives. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:26.000Z"}
+{"mfr_sku":"FP939003","pattern_name":"Owen","color_name":"Corde","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP939003-owen","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Jute","Width":"120 cm / 47,24 inch","Repeat":"Free match","Weight":"424 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"CFA recommended | Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"120 cm / 47,24 inch","composition":"100 % Jute","material":"NON WOVEN","pattern_repeat":"Free match","weight":"424 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Owen","description":"Plains & semi plains - Paperbacked fabrics, Owen. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:26.908Z"}
+{"mfr_sku":"FP489001","pattern_name":"Carriacou","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP489001-carriacou","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 84 cm - 33,07 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY13"},"width":"134 cm / 52,75 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 84 cm - 33,07 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Carriacou","description":"Wide width printed wallpapers, Carriacou. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","https://static.pierrefrey.com/uploads/product/packshots/66923674-3a1f-4d0f-82e6-9c5926f61726/P6LPZxJOh4jwREfL1dAP.webp","https://static.pierrefrey.com/uploads/product/packshots/34a6d6cb-e180-47db-bf81-f3c1ab8cd510/OdgM237kq7hhmCSGd4oR.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp,https://static.pierrefrey.com/uploads/product/packshots/66923674-3a1f-4d0f-82e6-9c5926f61726/P6LPZxJOh4jwREfL1dAP.webp,https://static.pierrefrey.com/uploads/product/packshots/34a6d6cb-e180-47db-bf81-f3c1ab8cd510/OdgM237kq7hhmCSGd4oR.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:27.577Z"}
+{"mfr_sku":"FP912001","pattern_name":"Cherry kawasaki","color_name":"Vertdegris","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP912001-cherry-kawasaki","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3a22aba6-4311-4c08-b522-8c481d2826b6/tqfbdRrZdH0hGvGBIDG2_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Panoramic wallpapers","Artist":"Alexandre De Betak","Sales Unit":"Full panoramic  204 cm x 300 cm ( 3 lengths  68 cm x 300 cm) -  80,31 in x 118,11 in( 3 lengths  26,77 in x 118,11 in)","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 204 cm - 80,00 inch | V: 300 cm - 118,11 inch","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 3 panels"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 204 cm - 80,00 inch | V: 300 cm - 118,11 inch","weight":"460 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  204 cm x 300 cm ( 3 lengths  68 cm x 300 cm) -  80,31 in x 118,11 in( 3 lengths  26,77 in x 118,11 in)","roll_length":null,"collection":"Cherry kawasaki","description":"Small width printed wallpapers - Vinyls - Panoramic wallpapers, Cherry kawasaki. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3a22aba6-4311-4c08-b522-8c481d2826b6/tqfbdRrZdH0hGvGBIDG2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3a22aba6-4311-4c08-b522-8c481d2826b6/tqfbdRrZdH0hGvGBIDG2.webp","https://static.pierrefrey.com/uploads/product/packshots/5f566685-ee62-4945-aefe-4d3ae02e2711/h4DnqeB6BEEtgk9RF8ds.webp","https://static.pierrefrey.com/uploads/product/packshots/5f3d4cf5-7af3-4c1f-b958-aebd2f022fb8/fvlBdg0Ct4M1MXQpRyIh.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/3a22aba6-4311-4c08-b522-8c481d2826b6/FvlnpDkPP3ggriVZK8b3.png"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3a22aba6-4311-4c08-b522-8c481d2826b6/tqfbdRrZdH0hGvGBIDG2.webp,https://static.pierrefrey.com/uploads/product/packshots/5f566685-ee62-4945-aefe-4d3ae02e2711/h4DnqeB6BEEtgk9RF8ds.webp,https://static.pierrefrey.com/uploads/product/packshots/5f3d4cf5-7af3-4c1f-b958-aebd2f022fb8/fvlBdg0Ct4M1MXQpRyIh.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/3a22aba6-4311-4c08-b522-8c481d2826b6/FvlnpDkPP3ggriVZK8b3.png","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/3a22aba6-4311-4c08-b522-8c481d2826b6/FvlnpDkPP3ggriVZK8b3.png","product_type":"wallcovering","scraped_at":"2026-07-07T20:11:28.295Z"}
+{"mfr_sku":"BP366001","pattern_name":"Les rivieres de l'indus","color_name":"Jouy","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP366001-les-rivieres-de-lindus","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"130 cm / 51,18 inch","Repeat":"H: 43 cm - 16,00 inch | V: 26 cm - 10,23 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"B9979PPBRAQ9"},"width":"130 cm / 51,18 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 43 cm - 16,00 inch | V: 26 cm - 10,23 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les rivieres de l'indus","description":"Wide width printed wallpapers, Les rivieres de l'indus. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/38d7b3b5-1668-489d-b00b-251a78df03e5/zHZD0ibmDWwDMyO9cdjz.webp","https://static.pierrefrey.com/uploads/product/packshots/46d33a9c-935a-4cea-80c1-5936e8caecd7/DYrKjrrxWZWGsUCFi8wC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/38d7b3b5-1668-489d-b00b-251a78df03e5/zHZD0ibmDWwDMyO9cdjz.webp,https://static.pierrefrey.com/uploads/product/packshots/46d33a9c-935a-4cea-80c1-5936e8caecd7/DYrKjrrxWZWGsUCFi8wC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:29.275Z"}
+{"mfr_sku":"BP366002","pattern_name":"Les rivieres de l'indus","color_name":"Nympheas","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP366002-les-rivieres-de-lindus","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"130 cm / 51,18 inch","Repeat":"H: 43 cm - 16,00 inch | V: 26 cm - 10,23 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"B9979PPBRAQ9"},"width":"130 cm / 51,18 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 43 cm - 16,00 inch | V: 26 cm - 10,23 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les rivieres de l'indus","description":"Wide width printed wallpapers, Les rivieres de l'indus. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/38d7b3b5-1668-489d-b00b-251a78df03e5/zHZD0ibmDWwDMyO9cdjz.webp","https://static.pierrefrey.com/uploads/product/packshots/46d33a9c-935a-4cea-80c1-5936e8caecd7/DYrKjrrxWZWGsUCFi8wC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/38d7b3b5-1668-489d-b00b-251a78df03e5/zHZD0ibmDWwDMyO9cdjz.webp,https://static.pierrefrey.com/uploads/product/packshots/46d33a9c-935a-4cea-80c1-5936e8caecd7/DYrKjrrxWZWGsUCFi8wC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:30.392Z"}
+{"mfr_sku":"BP357001","pattern_name":"Mandalay","color_name":"Hortensia","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP357001-mandalay","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics - Panoramic wallpapers","Sales Unit":"Full panoramic  134 cm x 300 cm ( 1 lengths 134 cm x 300 cm) -  52,75 in x 118,11 in( 1 lengths  52,75 in x 118,11 in)","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 266 cm - 104,72 inch | Straight repeat","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Sold as a complete artwork","Information":"1 roll = 1 panel"},"width":"134 cm / 52,75 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 266 cm - 104,72 inch | Straight repeat","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Full panoramic  134 cm x 300 cm ( 1 lengths 134 cm x 300 cm) -  52,75 in x 118,11 in( 1 lengths  52,75 in x 118,11 in)","roll_length":null,"collection":"Mandalay","description":"Wide width printed wallpapers - Paperbacked fabrics - Panoramic wallpapers, Mandalay. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/bXjMZ087RLtx2EVOIEpW.png"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/bXjMZ087RLtx2EVOIEpW.png","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/bXjMZ087RLtx2EVOIEpW.png","product_type":"wallcovering","scraped_at":"2026-07-07T20:11:31.473Z"}
+{"mfr_sku":"FP863006","pattern_name":"Sofia","color_name":"Paille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP863006-sofia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"490 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY39"},"width":"130 cm / 51,18 inch","composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"490 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sofia","description":"Plains & semi plains - Paperbacked fabrics, Sofia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:32.177Z"}
+{"mfr_sku":"FP070003","pattern_name":"Graphic","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP070003-graphic","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flat screen printed","Book":"F9979PPFREY45"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Graphic","description":"Printed wallpapers, Graphic. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/06e90035-7b16-4349-ba31-f79cdb63c492/6tIOay2PQXwD76ddpKB2.webp","https://static.pierrefrey.com/uploads/product/packshots/24f5d3e4-e076-4d35-9154-caa9e5599064/bpd5da8pE4V38PoP2QEl.webp","https://static.pierrefrey.com/uploads/product/packshots/d190ccc3-8c43-4f68-9948-efb45a2e48a0/baLzBZcwkdpPGF4dQ2zU.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/06e90035-7b16-4349-ba31-f79cdb63c492/6tIOay2PQXwD76ddpKB2.webp,https://static.pierrefrey.com/uploads/product/packshots/24f5d3e4-e076-4d35-9154-caa9e5599064/bpd5da8pE4V38PoP2QEl.webp,https://static.pierrefrey.com/uploads/product/packshots/d190ccc3-8c43-4f68-9948-efb45a2e48a0/baLzBZcwkdpPGF4dQ2zU.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:33.017Z"}
+{"mfr_sku":"W4566002","pattern_name":"Wallpaper marly","color_name":"Rust","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4566002-wallpaper-marly","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 79 cm - 31,10 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 79 cm - 31,10 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper marly","description":"Small width printed wallpapers, Wallpaper marly. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:33.896Z"}
+{"mfr_sku":"FP026001","pattern_name":"Natacha","color_name":"Lin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP026001-natacha","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 43 cm - 16,92 inch | Straight repeat","Weight":"340 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Raised pattern","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"129 cm / 50,78 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 129 cm - 50,00 inch | V: 43 cm - 16,92 inch | Straight repeat","weight":"340 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Natacha","description":"Wide width printed wallpapers, Natacha. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","https://static.pierrefrey.com/uploads/product/packshots/51163c9c-16e6-457b-97dd-67d75b4a96f9/2sdVk3WdQatgOQdGmnV7.webp","https://static.pierrefrey.com/uploads/product/packshots/a0b36034-d5b8-4e74-aa1c-c7dcfa26434e/pbEeEHORYc3ahlt9j28S.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp,https://static.pierrefrey.com/uploads/product/packshots/51163c9c-16e6-457b-97dd-67d75b4a96f9/2sdVk3WdQatgOQdGmnV7.webp,https://static.pierrefrey.com/uploads/product/packshots/a0b36034-d5b8-4e74-aa1c-c7dcfa26434e/pbEeEHORYc3ahlt9j28S.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:34.779Z"}
+{"mfr_sku":"BP334027","pattern_name":"Shiva","color_name":"Ballerine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334027-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:35.553Z"}
+{"mfr_sku":"FP181004","pattern_name":"Wallpaper sintra","color_name":"Tomate","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP181004-wallpaper-sintra","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 96 cm - 37,79 inch | Half drop repeat","Weight":"173 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 96 cm - 37,79 inch | Half drop repeat","weight":"173 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper sintra","description":"Small width printed wallpapers, Wallpaper sintra. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:36.414Z"}
+{"mfr_sku":"FP061001","pattern_name":"Maya","color_name":"Tropical","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP061001-maya","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn_251x335_webp.webp","specs":{"Type":"Embossed patterns - Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"PAPER","Composition":"40 % Straw - 30 % Polyester - 16 % Cotton - 14 % Viscose","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"450 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"F9979PPFREY45"},"width":"86 cm / 33,85 inch","composition":"40 % Straw - 30 % Polyester - 16 % Cotton - 14 % Viscose","material":"PAPER","pattern_repeat":"H: 86 cm - 33,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"450 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Maya","description":"Embossed patterns - Straws and similar materials - Embroideries, Maya. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/5d3484b1-011e-45e7-a2ea-9628d81f9320/oP8QiqDnZoS31lLEAxj0.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/5d3484b1-011e-45e7-a2ea-9628d81f9320/oP8QiqDnZoS31lLEAxj0.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:37.427Z"}
+{"mfr_sku":"BP328002","pattern_name":"La comedie","color_name":"Bp328002","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP328002-la-comedie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"B9979PPBRAQ4"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"La comedie","description":"Small width printed wallpapers, La comedie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:38.260Z"}
+{"mfr_sku":"FP495002","pattern_name":"Happy monkey","color_name":"Mordore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP495002-happy-monkey","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 130 cm - 51,18 inch | Offset repeat 1/4","Weight":"295 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 130 cm - 51,18 inch | Offset repeat 1/4","weight":"295 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Happy monkey","description":"Straws and similar materials - Printed wallpapers, Happy monkey. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:38.941Z"}
+{"mfr_sku":"BP334021","pattern_name":"Shiva","color_name":"Blond","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334021-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:39.750Z"}
+{"mfr_sku":"BP205004","pattern_name":"Wallpaper vermicule","color_name":"Lavender","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP205004-wallpaper-vermicule","list_image":"https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,10 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 12 cm - 4,00 inch | V: 9 cm - 3,54 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Soaking time before hanging: maximum 2 minutes."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 12 cm - 4,00 inch | V: 9 cm - 3,54 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,10 mts","roll_length":null,"collection":"Wallpaper vermicule","description":"Small width printed wallpapers, Wallpaper vermicule. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/83dc8673-b844-458e-aae1-a97d7380f2b6/V0FKA2pCabcXygvXlLgi.webp","https://static.pierrefrey.com/uploads/product/packshots/b3b69585-8ed3-4b55-b785-327ac133c7e3/96pkrCnNU76p9EFqdbRh.webp","https://static.pierrefrey.com/uploads/product/packshots/2929a256-661d-43a1-8a87-f318aac0896b/DZa1lUNJ8hC81Txs97S6.webp","https://static.pierrefrey.com/uploads/product/packshots/dc8e8368-4575-4060-8e6e-cd0b22b7cd40/keaPWjDUvwHa79LK3yxa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/83dc8673-b844-458e-aae1-a97d7380f2b6/V0FKA2pCabcXygvXlLgi.webp,https://static.pierrefrey.com/uploads/product/packshots/b3b69585-8ed3-4b55-b785-327ac133c7e3/96pkrCnNU76p9EFqdbRh.webp,https://static.pierrefrey.com/uploads/product/packshots/2929a256-661d-43a1-8a87-f318aac0896b/DZa1lUNJ8hC81Txs97S6.webp,https://static.pierrefrey.com/uploads/product/packshots/dc8e8368-4575-4060-8e6e-cd0b22b7cd40/keaPWjDUvwHa79LK3yxa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:40.575Z"}
+{"mfr_sku":"FP841002","pattern_name":"Les rues parisiennes","color_name":"Indigo","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP841002-les-rues-parisiennes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Jean-Denis Malclès","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 90 cm - 35,43 inch | Half drop repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 90 cm - 35,43 inch | Half drop repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les rues parisiennes","description":"Wide width printed wallpapers, Les rues parisiennes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:41.316Z"}
+{"mfr_sku":"FP035001","pattern_name":"Diego","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP035001-diego","list_image":"https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"85 % Cotton - 15 % Polyester","Width":"137 cm / 53,93 inch","Repeat":"H: 9 cm - 3,00 inch | Free match","Weight":"295 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"137 cm / 53,93 inch","composition":"85 % Cotton - 15 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 9 cm - 3,00 inch | Free match","weight":"295 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Diego","description":"Paperbacked fabrics, Diego. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:42.113Z"}
+{"mfr_sku":"BP338001","pattern_name":"Le paravent chinois","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP338001-le-paravent-chinois","list_image":"https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 139 cm - 54,72 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 139 cm - 54,72 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le paravent chinois","description":"Wide width printed wallpapers, Le paravent chinois. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/30b3dd82-e96a-483e-9a57-0348dc80818c/JQ9iofEcxPPmsofpXmuv.webp","https://static.pierrefrey.com/uploads/product/packshots/5623c26c-0dac-43c1-88f6-d337291fc8bc/fV63oLFVaW00un9qlKME.webp","https://static.pierrefrey.com/uploads/product/packshots/e77dbe55-0d9f-431a-9b83-ebfed002dfe0/9bNvg4EaBqkoYax2GeGu.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/30b3dd82-e96a-483e-9a57-0348dc80818c/JQ9iofEcxPPmsofpXmuv.webp,https://static.pierrefrey.com/uploads/product/packshots/5623c26c-0dac-43c1-88f6-d337291fc8bc/fV63oLFVaW00un9qlKME.webp,https://static.pierrefrey.com/uploads/product/packshots/e77dbe55-0d9f-431a-9b83-ebfed002dfe0/9bNvg4EaBqkoYax2GeGu.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:43.090Z"}
+{"mfr_sku":"BP365003","pattern_name":"Pontchartrain coordonne","color_name":"Miel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP365003-pontchartrain-coordonne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 32 cm - 12,59 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 32 cm - 12,59 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Pontchartrain coordonne","description":"Small width printed wallpapers, Pontchartrain coordonne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/ff4f3828-a884-473e-b206-ef9fd2f3cb84/t3ploOwZhYx5Q9rzKAQh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/ff4f3828-a884-473e-b206-ef9fd2f3cb84/t3ploOwZhYx5Q9rzKAQh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:44.009Z"}
+{"mfr_sku":"FP648002","pattern_name":"Ernesto","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP648002-ernesto","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"85 % Polyester - 15 % Acrylic","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"270 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY35"},"width":"140 cm / 55,11 inch","composition":"85 % Polyester - 15 % Acrylic","material":"NON WOVEN","pattern_repeat":"Free match","weight":"270 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ernesto","description":"Plains & semi plains - Paperbacked fabrics, Ernesto. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:44.880Z"}
+{"mfr_sku":"FP763002","pattern_name":"Dragons de feu","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP763002-dragons-de-feu","list_image":"https://static.pierrefrey.com/uploads/product/packshots/42221496-7359-477e-bd29-5755c07ab5c7/8fsdepF7PTGrQOVeGqyQ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Collaboration":"Maison Caspari","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"F9979PPFREY25"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Dragons de feu","description":"Small width printed wallpapers, Dragons de feu. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/42221496-7359-477e-bd29-5755c07ab5c7/8fsdepF7PTGrQOVeGqyQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/42221496-7359-477e-bd29-5755c07ab5c7/8fsdepF7PTGrQOVeGqyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp","https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp","https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp","https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp","https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp","https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp","https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/42221496-7359-477e-bd29-5755c07ab5c7/8fsdepF7PTGrQOVeGqyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp,https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp,https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp,https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp,https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp,https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp,https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:45.655Z"}
+{"mfr_sku":"FP846003","pattern_name":"Ciel reve","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP846003-ciel-reve","list_image":"https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 97 cm - 38,18 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 97 cm - 38,18 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ciel reve","description":"Small width printed wallpapers - Vinyls, Ciel reve. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:46.442Z"}
+{"mfr_sku":"FP988001","pattern_name":"La dame de fer","color_name":"Jardin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP988001-la-dame-de-fer","list_image":"https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy_251x335_webp.webp","specs":{"Type":"Vinyls - Panoramic wallpapers - Printed wallpapers","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 204 cm - 80,00 inch | V: 300 cm - 118,11 inch","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 3 panels"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 204 cm - 80,00 inch | V: 300 cm - 118,11 inch","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per panel","roll_length":null,"collection":"La dame de fer","description":"Vinyls - Panoramic wallpapers - Printed wallpapers, La dame de fer. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp","https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp","https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp","https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp","https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp","https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp","https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp","https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp","https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp","https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp","https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp,https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp,https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp,https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp,https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp,https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp,https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp,https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp,https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp,https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp,https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:47.127Z"}
+{"mfr_sku":"FP446001","pattern_name":"Leo","color_name":"Noir","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP446001-leo","list_image":"https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"PAPER","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 95 cm - 37,40 inch | Half drop repeat","Weight":"289 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Dry strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Stain and impact resistant","Book":"F9979PPFREY9"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"PAPER","pattern_repeat":"H: 70 cm - 27,00 inch | V: 95 cm - 37,40 inch | Half drop repeat","weight":"289 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Leo","description":"Small width printed wallpapers - Vinyls, Leo. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp","https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp","https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp","https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp","https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp","https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp","https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp","https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp","https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp","https://static.pierrefrey.com/uploads/product/packshots/577e6760-137d-4e49-adbf-4f8fcf2367cf/R7oYnGttWYTweSRMS43K.webp","https://static.pierrefrey.com/uploads/product/packshots/b47f09ea-8b15-4418-86d6-bda8b8f8c458/KQXy7RyB5kp98ZkmJmLf.webp","https://static.pierrefrey.com/uploads/product/packshots/16d2d01d-cc51-4985-89f7-bafb864d0d47/ft685jQVoYMCDy9BzJGO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3db4152-8b0f-4eb2-94e2-6f28939e70e2/xgRXKDAlKhaGP63L00Bd.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp,https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp,https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp,https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp,https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp,https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp,https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp,https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp,https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp,https://static.pierrefrey.com/uploads/product/packshots/577e6760-137d-4e49-adbf-4f8fcf2367cf/R7oYnGttWYTweSRMS43K.webp,https://static.pierrefrey.com/uploads/product/packshots/b47f09ea-8b15-4418-86d6-bda8b8f8c458/KQXy7RyB5kp98ZkmJmLf.webp,https://static.pierrefrey.com/uploads/product/packshots/16d2d01d-cc51-4985-89f7-bafb864d0d47/ft685jQVoYMCDy9BzJGO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3db4152-8b0f-4eb2-94e2-6f28939e70e2/xgRXKDAlKhaGP63L00Bd.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:47.880Z"}
+{"mfr_sku":"FP888001","pattern_name":"Hatchepsout","color_name":"Fleurdelotus","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP888001-hatchepsout","list_image":"https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Collaboration":"Musée du Louvre","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 96 cm - 37,79 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY32 | F9979PPFREY37"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 96 cm - 37,79 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Hatchepsout","description":"Wide width printed wallpapers, Hatchepsout. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp","https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp","https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp","https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp","https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp,https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp,https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp,https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp,https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:48.499Z"}
+{"mfr_sku":"FP071003","pattern_name":"Craquelin","color_name":"Aqua","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP071003-craquelin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3_335x251_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"51 cm / 20,07 inch","Repeat":"H: 51 cm - 20,00 inch | Free match","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY45"},"width":"51 cm / 20,07 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 51 cm - 20,00 inch | Free match","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Craquelin","description":"Printed wallpapers, Craquelin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:49.313Z"}
+{"mfr_sku":"BP372001","pattern_name":"Petits appartements de la reine","color_name":"Jouy","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP372001-petits-appartements-de-la-reine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Collaboration":"Musée de la Toile de Jouy","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"93 cm / 36,61 inch","Repeat":"H: 93 cm - 36,00 inch | V: 127 cm - 50,00 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"B9979PPBRAQ9"},"width":"93 cm / 36,61 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 93 cm - 36,00 inch | V: 127 cm - 50,00 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Petits appartements de la reine","description":"Wide width printed wallpapers, Petits appartements de la reine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/dfb36d4e-9238-4905-ac97-6394a6a2ae09/ecjKmxLvTsWeTw3kzsNA.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/dfb36d4e-9238-4905-ac97-6394a6a2ae09/ecjKmxLvTsWeTw3kzsNA.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:50.292Z"}
+{"mfr_sku":"FP012002","pattern_name":"Cancale","color_name":"Bigorneau","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP012002-cancale","list_image":"https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"50 % Paper - 50 % Jute","Width":"88 cm / 34,64 inch","Repeat":"H: 88 cm - 34,00 inch | V: 93 cm - 36,61 inch | Straight repeat","Weight":"340 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber | Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY41"},"width":"88 cm / 34,64 inch","composition":"50 % Paper - 50 % Jute","material":"NON WOVEN","pattern_repeat":"H: 88 cm - 34,00 inch | V: 93 cm - 36,61 inch | Straight repeat","weight":"340 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cancale","description":"Straws and similar materials - Printed wallpapers, Cancale. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:51.081Z"}
+{"mfr_sku":"FP010001","pattern_name":"La desirade","color_name":"Palmeraie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP010001-la-desirade","list_image":"https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 87 cm - 34,25 inch | Straight repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY41"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 87 cm - 34,25 inch | Straight repeat","weight":"240 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La desirade","description":"Straws and similar materials - Printed wallpapers, La desirade. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:51.968Z"}
+{"mfr_sku":"FP840002","pattern_name":"Nids jolis","color_name":"Prairie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP840002-nids-jolis","list_image":"https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 91 cm - 35,00 inch | V: 66 cm - 25,98 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 91 cm - 35,00 inch | V: 66 cm - 25,98 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nids jolis","description":"Wide width printed wallpapers, Nids jolis. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:52.740Z"}
+{"mfr_sku":"LP104002","pattern_name":"Paradis perdu","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP104002-paradis-perdu","list_image":"https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 69 cm - 27,00 inch | V: 66 cm - 25,98 inch | Half drop repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 69 cm - 27,00 inch | V: 66 cm - 25,98 inch | Half drop repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Paradis perdu","description":"Small width printed wallpapers, Paradis perdu. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:53.641Z"}
+{"mfr_sku":"FP033001","pattern_name":"Aziz","color_name":"Nacre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP033001-aziz","list_image":"https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt_335x251_webp.webp","specs":{"Type":"Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","Width":"134 cm / 52,75 inch","Weight":"320 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY43"},"width":"134 cm / 52,75 inch","composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","material":"NON WOVEN","pattern_repeat":null,"weight":"320 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Aziz","description":"Straws and similar materials, Aziz. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:54.604Z"}
+{"mfr_sku":"FP789003","pattern_name":"Patio exotique","color_name":"Fusain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP789003-patio-exotique","list_image":"https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 67 cm - 26,37 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 67 cm - 26,37 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Patio exotique","description":"Wide width printed wallpapers, Patio exotique. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:55.477Z"}
+{"mfr_sku":"FP031001","pattern_name":"Astou","color_name":"Neige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP031001-astou","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"135 cm / 53,14 inch","Repeat":"H: 135 cm - 53,00 inch | V: 64 cm - 25,19 inch | Free match","Weight":"375 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","Notes":"Raised pattern","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"135 cm / 53,14 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 135 cm - 53,00 inch | V: 64 cm - 25,19 inch | Free match","weight":"375 gr / m²","certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Astou","description":"Wide width printed wallpapers - Embossed patterns, Astou. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:56.537Z"}
+{"mfr_sku":"FP987001","pattern_name":"Mamore","color_name":"Riviere","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP987001-mamore","list_image":"https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp_335x251_webp.webp","specs":{"Type":"Panoramic wallpapers - Printed wallpapers","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"-","Width":"90 cm / 35,43 inch","Repeat":"H: 450 cm - 177,00 inch | V: 300 cm - 118,11 inch","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 5 panels"},"width":"90 cm / 35,43 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 450 cm - 177,00 inch | V: 300 cm - 118,11 inch","weight":"240 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per panel","roll_length":null,"collection":"Mamore","description":"Panoramic wallpapers - Printed wallpapers, Mamore. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp","https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp","https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp","https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp","https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp","https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp","https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp","https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp","https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp","https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp","https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp,https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp,https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp,https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp,https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp,https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp,https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp,https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp,https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp,https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp,https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:57.380Z"}
+{"mfr_sku":"FP168002","pattern_name":"Wallpaper sans papillons","color_name":"Jaune","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP168002-wallpaper-sans-papillons","list_image":"https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 41 cm - 16,14 inch | Straight repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 41 cm - 16,14 inch | Straight repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper sans papillons","description":"Small width printed wallpapers, Wallpaper sans papillons. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/c4981731-5a17-4e66-9f5d-2a601a7513a1/9dsohfd0dYWzPa73TWIw.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/c4981731-5a17-4e66-9f5d-2a601a7513a1/9dsohfd0dYWzPa73TWIw.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:58.228Z"}
+{"mfr_sku":"BP209A03","pattern_name":"Wallpaper septeuil","color_name":"Antique Blue","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP209A03-wallpaper-septeuil","list_image":"https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 103 cm - 40,55 inch | Straight repeat","Weight":"203 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 103 cm - 40,55 inch | Straight repeat","weight":"203 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper septeuil","description":"Small width printed wallpapers, Wallpaper septeuil. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:59.041Z"}
+{"mfr_sku":"FP065001","pattern_name":"Coconut","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP065001-coconut","list_image":"https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY45"},"width":"86 cm / 33,85 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 86 cm - 33,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Coconut","description":"Straws and similar materials - Printed wallpapers, Coconut. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:11:59.794Z"}
+{"mfr_sku":"FP948001","pattern_name":"Maisons et jardins","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP948001-maisons-et-jardins","list_image":"https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 67 cm - 26,37 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 67 cm - 26,37 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Maisons et jardins","description":"Wide width printed wallpapers, Maisons et jardins. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:00.698Z"}
+{"mfr_sku":"FP522001","pattern_name":"L'esterel","color_name":"Agave","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP522001-lesterel","list_image":"https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Panoramic wallpapers","Sales Unit":"Full panoramic  280 cm x 300 cm ( 4 lengths  70 cm x 300 cm) - 110,23 in x 118,11 in( 4 lengths  27,55 in x 118,11 in)","Backing":"NON WOVEN","Composition":"-","Width":"70 cm / 27,55 inch","Repeat":"H: 280 cm - 110,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 4 panels"},"width":"70 cm / 27,55 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 280 cm - 110,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  280 cm x 300 cm ( 4 lengths  70 cm x 300 cm) - 110,23 in x 118,11 in( 4 lengths  27,55 in x 118,11 in)","roll_length":null,"collection":"L'esterel","description":"Small width printed wallpapers - Panoramic wallpapers, L'esterel. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct.webp","https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI.webp","https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT.webp","https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8.webp","https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM.webp","https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/49418cf0-12ef-48ed-9fd6-53c63e352a38/XwmlswYoTBcZZ9ctycJz.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct.webp,https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI.webp,https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT.webp,https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8.webp,https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM.webp,https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/49418cf0-12ef-48ed-9fd6-53c63e352a38/XwmlswYoTBcZZ9ctycJz.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/49418cf0-12ef-48ed-9fd6-53c63e352a38/XwmlswYoTBcZZ9ctycJz.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:12:01.809Z"}
+{"mfr_sku":"W4396001","pattern_name":"Wallpaper panthere","color_name":"Natural","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4396001-wallpaper-panthere","list_image":"https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 46 cm - 18,11 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 46 cm - 18,11 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper panthere","description":"Small width printed wallpapers, Wallpaper panthere. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","https://static.pierrefrey.com/uploads/product/packshots/5ef12972-b3f2-41e9-84f2-5e4068a93335/x8Mh1pfU1b0RQ4ZXzxTq.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp,https://static.pierrefrey.com/uploads/product/packshots/5ef12972-b3f2-41e9-84f2-5e4068a93335/x8Mh1pfU1b0RQ4ZXzxTq.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:03.167Z"}
+{"mfr_sku":"FP428001","pattern_name":"Arlequins","color_name":"Vintage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP428001-arlequins","list_image":"https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Jean Lurçat","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 53 cm - 20,86 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY9"},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 53 cm - 20,86 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Arlequins","description":"Wide width printed wallpapers, Arlequins. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp","https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp","https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp","https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp","https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp","https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp","https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp","https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp","https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp,https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp,https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp,https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp,https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp,https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp,https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp,https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp,https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:04.490Z"}
+{"mfr_sku":"FP646002","pattern_name":"Aiko","color_name":"Champagne","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP646002-aiko","list_image":"https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"245 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect"},"width":"132 cm / 51,96 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"245 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Aiko","description":"Paperbacked fabrics, Aiko. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:05.308Z"}
+{"mfr_sku":"LP100002","pattern_name":"Le chariot chinois","color_name":"Vert Du Nil","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP100002-le-chariot-chinois","list_image":"https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  5,45 mts","Backing":"PAPER","Composition":"-","Width":"57 cm / 22,44 inch","Repeat":"H: 57 cm - 22,00 inch | V: 62 cm - 24,40 inch | Straight repeat","Weight":"140 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"57 cm / 22,44 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 57 cm - 22,00 inch | V: 62 cm - 24,40 inch | Straight repeat","weight":"140 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  5,45 mts","roll_length":null,"collection":"Le chariot chinois","description":"Small width printed wallpapers, Le chariot chinois. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:06.389Z"}
+{"mfr_sku":"FP566002","pattern_name":"Totem","color_name":"Negatif","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP566002-totem","list_image":"https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Christian Astuguevieille","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"127 cm / 50,00 inch","Repeat":"H: 127 cm - 50,00 inch | V: 140 cm - 55,11 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Notes":"Flame retardant backing"},"width":"127 cm / 50,00 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 127 cm - 50,00 inch | V: 140 cm - 55,11 inch | Straight repeat","weight":"180 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Totem","description":"Wide width printed wallpapers, Totem. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp","https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp","https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp","https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp","https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp","https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp","https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp","https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp","https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp","https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp","https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp","https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp","https://static.pierrefrey.com/uploads/product/packshots/985b2c0f-4573-4691-8bb9-6c37fce03bfe/j2qaLsraQEG4lZLE46tq.webp","https://static.pierrefrey.com/uploads/product/packshots/e76fe574-0e85-4569-afd9-9cb381b4a2c0/9JfpkNHasXF7hxhFS7ch.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp,https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp,https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp,https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp,https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp,https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp,https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp,https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp,https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp,https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp,https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp,https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp,https://static.pierrefrey.com/uploads/product/packshots/985b2c0f-4573-4691-8bb9-6c37fce03bfe/j2qaLsraQEG4lZLE46tq.webp,https://static.pierrefrey.com/uploads/product/packshots/e76fe574-0e85-4569-afd9-9cb381b4a2c0/9JfpkNHasXF7hxhFS7ch.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:07.150Z"}
+{"mfr_sku":"FP782002","pattern_name":"Vrillette","color_name":"Charbon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP782002-vrillette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Atelier Buffile","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 140 cm - 55,11 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness"},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 140 cm - 55,11 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Vrillette","description":"Wide width printed wallpapers, Vrillette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:07.979Z"}
+{"mfr_sku":"FP951002","pattern_name":"Foret d'eden","color_name":"Nocturne","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP951002-foret-deden","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 129 cm - 50,78 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 129 cm - 50,78 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Foret d'eden","description":"Wide width printed wallpapers, Foret d'eden. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:09.154Z"}
+{"mfr_sku":"FP919001","pattern_name":"Liam","color_name":"Ivoire","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP919001-liam","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"83 % Linen - 17 % Polyamide","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"290 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"140 cm / 55,11 inch","composition":"83 % Linen - 17 % Polyamide","material":"NON WOVEN","pattern_repeat":"Free match","weight":"290 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Liam","description":"Plains & semi plains - Paperbacked fabrics, Liam. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:10.000Z"}
+{"mfr_sku":"BP352001","pattern_name":"Coulonges semis","color_name":"Hortensia","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP352001-coulonges-semis","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio_335x251_webp.webp","specs":{"Type":"Embossed patterns - Paperbacked fabrics - Embroideries","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"80 % Linen - 14 % Viscose - 6 % Polyester","Width":"129 cm / 50,78 inch","Repeat":"H: 13 cm - 5,00 inch | V: 10 cm - 3,93 inch | Straight repeat","Weight":"383 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"B9979PPBRAQ9"},"width":"129 cm / 50,78 inch","composition":"80 % Linen - 14 % Viscose - 6 % Polyester","material":"PAPER","pattern_repeat":"H: 13 cm - 5,00 inch | V: 10 cm - 3,93 inch | Straight repeat","weight":"383 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Coulonges semis","description":"Embossed patterns - Paperbacked fabrics - Embroideries, Coulonges semis. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/2130a347-38ff-4419-8e04-f9a4b6f231f7/ugJXuO4zuKuv8JiUdfzW.webp","https://static.pierrefrey.com/uploads/product/packshots/bef92d8f-65da-4275-b3fa-bd370c9608fb/FHhdEeG4wUQ8uiwpRoSN.webp","https://static.pierrefrey.com/uploads/product/packshots/5244cdee-9042-493c-90c4-819e70b4e7ee/4uGPpnLVJxPxhuBxKHtk.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/2130a347-38ff-4419-8e04-f9a4b6f231f7/ugJXuO4zuKuv8JiUdfzW.webp,https://static.pierrefrey.com/uploads/product/packshots/bef92d8f-65da-4275-b3fa-bd370c9608fb/FHhdEeG4wUQ8uiwpRoSN.webp,https://static.pierrefrey.com/uploads/product/packshots/5244cdee-9042-493c-90c4-819e70b4e7ee/4uGPpnLVJxPxhuBxKHtk.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:11.017Z"}
+{"mfr_sku":"FP923001","pattern_name":"Suzette","color_name":"Chantilly","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP923001-suzette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"29 % Linen - 28 % Wool - 19 % Polyester - 16 % Cotton - 8 % Polyamide","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"357 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"29 % Linen - 28 % Wool - 19 % Polyester - 16 % Cotton - 8 % Polyamide","material":"NON WOVEN","pattern_repeat":"Free match","weight":"357 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Suzette","description":"Paperbacked fabrics, Suzette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:11.854Z"}
+{"mfr_sku":"BP356002","pattern_name":"Villandry","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP356002-villandry","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"H: 22 cm - 8,00 inch | V: 41 cm - 16,14 inch | Straight repeat","Weight":"218 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ9"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 22 cm - 8,00 inch | V: 41 cm - 16,14 inch | Straight repeat","weight":"218 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Villandry","description":"Wide width printed wallpapers - Paperbacked fabrics, Villandry. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:12.842Z"}
+{"mfr_sku":"FP320002","pattern_name":"Mauritius","color_name":"Nuit","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP320002-mauritius","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4d2a9406-5b1a-4c02-80d7-6bc8e377adb1/IBAJiIK8SPLItTgX9zk3_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"140 cm / 55,11 inch","Repeat":"V: 100 cm - 39,37 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"140 cm / 55,11 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"V: 100 cm - 39,37 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mauritius","description":"Wide width printed wallpapers, Mauritius. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4d2a9406-5b1a-4c02-80d7-6bc8e377adb1/IBAJiIK8SPLItTgX9zk3.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4d2a9406-5b1a-4c02-80d7-6bc8e377adb1/IBAJiIK8SPLItTgX9zk3.webp","https://static.pierrefrey.com/uploads/product/packshots/319c7d51-4ecf-4ee2-b4bd-51b0b403c17f/5NrXANIFfOmXN1GjBq0Y.webp","https://static.pierrefrey.com/uploads/product/packshots/de1705e3-02e4-435e-a649-10ea62c3270a/ISPjJWz6LkZLv1mDW1cm.webp","https://static.pierrefrey.com/uploads/product/packshots/7e8abc59-aaee-460e-bfc7-2246f4ad7672/3OfiJhUX0OGYpc3c9I31.webp","https://static.pierrefrey.com/uploads/product/packshots/15ea38a8-541f-4e79-a11d-2b9dc90e3e8f/to8KmLhihnHaaGTPo4RX.webp","https://static.pierrefrey.com/uploads/product/packshots/c73e4057-2b3c-4c36-9784-8bdefc820b3c/NyYNGrS7ybeGMWmhthYd.webp","https://static.pierrefrey.com/uploads/product/packshots/266b27f6-6351-462e-afe5-d3e669118cb2/GTTDNwPmtShz5IV4BqJI.webp","https://static.pierrefrey.com/uploads/product/packshots/77796aa8-6692-47d9-8dac-6e76c0ec9bd4/XNmv7pfXI9102N2VaTzM.webp","https://static.pierrefrey.com/uploads/product/packshots/7d56f044-075d-4171-8c41-3f38990ffe75/BegiLQaIzzWLX7IdGpaZ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4d2a9406-5b1a-4c02-80d7-6bc8e377adb1/IBAJiIK8SPLItTgX9zk3.webp,https://static.pierrefrey.com/uploads/product/packshots/319c7d51-4ecf-4ee2-b4bd-51b0b403c17f/5NrXANIFfOmXN1GjBq0Y.webp,https://static.pierrefrey.com/uploads/product/packshots/de1705e3-02e4-435e-a649-10ea62c3270a/ISPjJWz6LkZLv1mDW1cm.webp,https://static.pierrefrey.com/uploads/product/packshots/7e8abc59-aaee-460e-bfc7-2246f4ad7672/3OfiJhUX0OGYpc3c9I31.webp,https://static.pierrefrey.com/uploads/product/packshots/15ea38a8-541f-4e79-a11d-2b9dc90e3e8f/to8KmLhihnHaaGTPo4RX.webp,https://static.pierrefrey.com/uploads/product/packshots/c73e4057-2b3c-4c36-9784-8bdefc820b3c/NyYNGrS7ybeGMWmhthYd.webp,https://static.pierrefrey.com/uploads/product/packshots/266b27f6-6351-462e-afe5-d3e669118cb2/GTTDNwPmtShz5IV4BqJI.webp,https://static.pierrefrey.com/uploads/product/packshots/77796aa8-6692-47d9-8dac-6e76c0ec9bd4/XNmv7pfXI9102N2VaTzM.webp,https://static.pierrefrey.com/uploads/product/packshots/7d56f044-075d-4171-8c41-3f38990ffe75/BegiLQaIzzWLX7IdGpaZ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:13.475Z"}
+{"mfr_sku":"BP350001","pattern_name":"Voile de genes","color_name":"Emeraude","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP350001-voile-de-genes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics - Panoramic wallpapers","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"87 cm / 34,25 inch","Repeat":"H: 174 cm - 68,00 inch | V: 300 cm - 118,11 inch","Weight":"225 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 2 panels"},"width":"87 cm / 34,25 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 174 cm - 68,00 inch | V: 300 cm - 118,11 inch","weight":"225 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per panel","roll_length":null,"collection":"Voile de genes","description":"Small width printed wallpapers - Paperbacked fabrics - Panoramic wallpapers, Voile de genes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/4d4ab3bb-439e-4348-9813-0869cb85dd00/PmTijfbxn6o7tzyAhLzz.png"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/4d4ab3bb-439e-4348-9813-0869cb85dd00/PmTijfbxn6o7tzyAhLzz.png","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/4d4ab3bb-439e-4348-9813-0869cb85dd00/PmTijfbxn6o7tzyAhLzz.png","product_type":"wallcovering","scraped_at":"2026-07-07T20:12:14.423Z"}
+{"mfr_sku":"BP300004","pattern_name":"Wallpaper la roziere - fond uni","color_name":"Epice","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP300004-wallpaper-la-roziere-fond-uni","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"RL","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"V: 61 cm - 24,01 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"V: 61 cm - 24,01 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"RL","roll_length":null,"collection":"Wallpaper la roziere - fond uni","description":"Small width printed wallpapers, Wallpaper la roziere - fond uni. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:15.632Z"}
+{"mfr_sku":"FP014001","pattern_name":"Varaderos","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP014001-varaderos","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 52 cm - 20,47 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY41"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 52 cm - 20,47 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Varaderos","description":"Wide width printed wallpapers, Varaderos. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/a5795ffa-c8c1-48e2-aaa1-41ee541bbe99/cjxbFdF8Mk0jGsEndaYU.webp","https://static.pierrefrey.com/uploads/product/packshots/aeffe135-5452-42c9-b4d4-f56193ae14ee/jUSWqV1aXyQBDZjkNx8a.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/a5795ffa-c8c1-48e2-aaa1-41ee541bbe99/cjxbFdF8Mk0jGsEndaYU.webp,https://static.pierrefrey.com/uploads/product/packshots/aeffe135-5452-42c9-b4d4-f56193ae14ee/jUSWqV1aXyQBDZjkNx8a.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:16.546Z"}
+{"mfr_sku":"FP777001","pattern_name":"Alpilles","color_name":"Abeille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP777001-alpilles","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 3 cm - 1,00 inch | V: 53 cm - 20,86 inch","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 3 cm - 1,00 inch | V: 53 cm - 20,86 inch","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Alpilles","description":"Small width printed wallpapers, Alpilles. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:17.356Z"}
+{"mfr_sku":"FP830001","pattern_name":"La nuit d'en yu","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP830001-la-nuit-den-yu","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 68 cm - 26,00 inch | V: 97 cm - 38,18 inch | Straight repeat","Weight":"125 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY28"},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 97 cm - 38,18 inch | Straight repeat","weight":"125 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La nuit d'en yu","description":"Wide width printed wallpapers, La nuit d'en yu. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp","https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp","https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp","https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp","https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp","https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp","https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp","https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp","https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp","https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp,https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp,https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp,https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp,https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp,https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp,https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp,https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp,https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp,https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:17.931Z"}
+{"mfr_sku":"BP334013","pattern_name":"Shiva","color_name":"Or","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334013-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:18.791Z"}
+{"mfr_sku":"FP013001","pattern_name":"Transat","color_name":"Relax","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP013001-transat","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY41"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Transat","description":"Wide width printed wallpapers, Transat. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:19.729Z"}
+{"mfr_sku":"FP168001","pattern_name":"Wallpaper sans papillons","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP168001-wallpaper-sans-papillons","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 41 cm - 16,14 inch | Straight repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 41 cm - 16,14 inch | Straight repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper sans papillons","description":"Small width printed wallpapers, Wallpaper sans papillons. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/c4981731-5a17-4e66-9f5d-2a601a7513a1/9dsohfd0dYWzPa73TWIw.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/c4981731-5a17-4e66-9f5d-2a601a7513a1/9dsohfd0dYWzPa73TWIw.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:20.587Z"}
+{"mfr_sku":"BP349001","pattern_name":"Parvati","color_name":"Fruits Rouges","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP349001-parvati","list_image":"https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ_335x251_webp.webp","specs":{"Type":"Embossed patterns - Paperbacked fabrics - Embroideries","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"63 % Linen - 26 % Viscose - 11 % Polyester","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 117 cm - 46,06 inch | Straight repeat","Weight":"455 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"B9979PPBRAQ9"},"width":"129 cm / 50,78 inch","composition":"63 % Linen - 26 % Viscose - 11 % Polyester","material":"PAPER","pattern_repeat":"H: 129 cm - 50,00 inch | V: 117 cm - 46,06 inch | Straight repeat","weight":"455 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Parvati","description":"Embossed patterns - Paperbacked fabrics - Embroideries, Parvati. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/54754d3d-e375-4740-9f49-6596df48d115/94SQpnZpYdfnDIDjd3Dc.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/54754d3d-e375-4740-9f49-6596df48d115/94SQpnZpYdfnDIDjd3Dc.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:21.668Z"}
+{"mfr_sku":"FP008001","pattern_name":"Pleine mer","color_name":"Corail","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP008001-pleine-mer","list_image":"https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Half drop repeat","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Book":"F9979PPFREY41"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Half drop repeat","weight":"460 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Pleine mer","description":"Vinyls - Printed wallpapers, Pleine mer. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:22.441Z"}
+{"mfr_sku":"FP651003","pattern_name":"Portofino","color_name":"Lin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP651003-portofino","list_image":"https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"60 % Viscose - 31 % Cotton - 9 % Linen","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"685 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect"},"width":"130 cm / 51,18 inch","composition":"60 % Viscose - 31 % Cotton - 9 % Linen","material":"NON WOVEN","pattern_repeat":"Free match","weight":"685 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Portofino","description":"Plains & semi plains - Paperbacked fabrics, Portofino. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:23.247Z"}
+{"mfr_sku":"FP007002","pattern_name":"Punta cana","color_name":"Meringue","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP007002-punta-cana","list_image":"https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Fanny Lebon","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 87 cm - 34,25 inch | Half drop repeat","Weight":"300 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness | Raised pattern","Information":"Panel effect","Book":"F9979PPFREY41"},"width":"129 cm / 50,78 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 129 cm - 50,00 inch | V: 87 cm - 34,25 inch | Half drop repeat","weight":"300 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Punta cana","description":"Wide width printed wallpapers, Punta cana. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:23.963Z"}
+{"mfr_sku":"FP991001","pattern_name":"L'envol","color_name":"Marais","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP991001-lenvol","list_image":"https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI_251x335_webp.webp","specs":{"Type":"Vinyls - Panoramic wallpapers - Printed wallpapers","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 204 cm - 80,00 inch | V: 300 cm - 118,11 inch","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 3 panels"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 204 cm - 80,00 inch | V: 300 cm - 118,11 inch","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per panel","roll_length":null,"collection":"L'envol","description":"Vinyls - Panoramic wallpapers - Printed wallpapers, L'envol. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp","https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp","https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp","https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp","https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp","https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp","https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp","https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp","https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp","https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp","https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp,https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp,https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp,https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp,https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp,https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp,https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp,https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp,https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp,https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp,https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:24.563Z"}
+{"mfr_sku":"BP334006","pattern_name":"Shiva","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334006-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:25.357Z"}
+{"mfr_sku":"FP787002","pattern_name":"Fleurs de corail","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP787002-fleurs-de-corail","list_image":"https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 22 cm - 8,66 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 22 cm - 8,66 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Fleurs de corail","description":"Small width printed wallpapers, Fleurs de corail. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:26.251Z"}
+{"mfr_sku":"FP029002","pattern_name":"Lucie","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP029002-lucie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Cotton","Width":"135 cm / 53,14 inch","Repeat":"Free match","Weight":"495 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"135 cm / 53,14 inch","composition":"100 % Cotton","material":"NON WOVEN","pattern_repeat":"Free match","weight":"495 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Lucie","description":"Paperbacked fabrics, Lucie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:27.135Z"}
+{"mfr_sku":"BP206004","pattern_name":"Wallpaper la fontaine","color_name":"Leaf Green","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP206004-wallpaper-la-fontaine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 50 cm - 19,68 inch | Straight repeat","Weight":"174 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 50 cm - 19,68 inch | Straight repeat","weight":"174 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper la fontaine","description":"Small width printed wallpapers, Wallpaper la fontaine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:27.947Z"}
+{"mfr_sku":"FP006001","pattern_name":"Les anemones","color_name":"Ete","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP006001-les-anemones","list_image":"https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Artist":"Rachael Cocker","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 24 cm - 9,44 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 24 cm - 9,44 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les anemones","description":"Printed wallpapers, Les anemones. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:28.789Z"}
+{"mfr_sku":"BP209B03","pattern_name":"Wallpaper septeuil","color_name":"Antique Blue","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP209B03-wallpaper-septeuil","list_image":"https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 103 cm - 40,55 inch | Straight repeat","Weight":"203 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 103 cm - 40,55 inch | Straight repeat","weight":"203 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper septeuil","description":"Small width printed wallpapers, Wallpaper septeuil. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:29.452Z"}
+{"mfr_sku":"FP983001","pattern_name":"Tamatoa","color_name":"Coquillage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP983001-tamatoa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"72 % Polyester - 28 % Polyamide","Width":"139 cm / 54,72 inch","Repeat":"H: 69 cm - 27,00 inch | V: 102 cm - 40,15 inch | Straight repeat","Weight":"509 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect"},"width":"139 cm / 54,72 inch","composition":"72 % Polyester - 28 % Polyamide","material":"NON WOVEN","pattern_repeat":"H: 69 cm - 27,00 inch | V: 102 cm - 40,15 inch | Straight repeat","weight":"509 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tamatoa","description":"Paperbacked fabrics - Straws and similar materials, Tamatoa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:30.252Z"}
+{"mfr_sku":"BP334014","pattern_name":"Shiva","color_name":"Craie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334014-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:31.225Z"}
+{"mfr_sku":"FP960001","pattern_name":"Ko tao","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP960001-ko-tao","list_image":"https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"132 cm / 51,96 inch","Repeat":"H: 132 cm - 51,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"200 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness | Raised pattern"},"width":"132 cm / 51,96 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 132 cm - 51,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"200 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ko tao","description":"Wide width printed wallpapers - Embossed patterns, Ko tao. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:32.001Z"}
+{"mfr_sku":"FP345001","pattern_name":"Ouistitis & co","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP345001-ouistitis-co","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5446aaf2-3db7-445a-9192-0adb38de8afa/wiijxkZxWiJ2g4u3g3oh_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"PAPER","Composition":"100 % Paper","Width":"68 cm / 26,77 inch","Repeat":"V: 64 cm - 25,19 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0"},"width":"68 cm / 26,77 inch","composition":"100 % Paper","material":"PAPER","pattern_repeat":"V: 64 cm - 25,19 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Ouistitis & co","description":"Small width printed wallpapers, Ouistitis & co. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5446aaf2-3db7-445a-9192-0adb38de8afa/wiijxkZxWiJ2g4u3g3oh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5446aaf2-3db7-445a-9192-0adb38de8afa/wiijxkZxWiJ2g4u3g3oh.webp","https://static.pierrefrey.com/uploads/product/packshots/ef8c7686-fc07-4784-be84-c0dcfbfe3c0c/CC1onPY952K5Nn6kZqFZ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5446aaf2-3db7-445a-9192-0adb38de8afa/wiijxkZxWiJ2g4u3g3oh.webp,https://static.pierrefrey.com/uploads/product/packshots/ef8c7686-fc07-4784-be84-c0dcfbfe3c0c/CC1onPY952K5Nn6kZqFZ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:32.768Z"}
+{"mfr_sku":"FP880003","pattern_name":"Roselia","color_name":"Nuit","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP880003-roselia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/54472970-4a98-4681-9f1d-2b656005ab86/eM0UTghLV9l7gbTCO3s4_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"139 cm / 54,72 inch","Repeat":"H: 139 cm - 54,00 inch | V: 120 cm - 47,24 inch | Straight repeat","Weight":"340 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Notes":"Raised pattern","Book":"F9979PPFREY33"},"width":"139 cm / 54,72 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 139 cm - 54,00 inch | V: 120 cm - 47,24 inch | Straight repeat","weight":"340 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Roselia","description":"Wide width printed wallpapers - Paperbacked fabrics, Roselia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/54472970-4a98-4681-9f1d-2b656005ab86/eM0UTghLV9l7gbTCO3s4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/54472970-4a98-4681-9f1d-2b656005ab86/eM0UTghLV9l7gbTCO3s4.webp","https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/54472970-4a98-4681-9f1d-2b656005ab86/eM0UTghLV9l7gbTCO3s4.webp,https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp,https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:33.433Z"}
+{"mfr_sku":"BP354004","pattern_name":"Les lilas","color_name":"Terre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP354004-les-lilas","list_image":"https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"134 cm / 52,75 inch","Repeat":"H: 90 cm - 35,00 inch | V: 43 cm - 16,92 inch | Half drop repeat","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"B9979PPBRAQ9"},"width":"134 cm / 52,75 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 43 cm - 16,92 inch | Half drop repeat","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les lilas","description":"Wide width printed wallpapers - Paperbacked fabrics, Les lilas. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/60147fb5-c257-48fd-af49-0da2f2daa526/wYsolUCXZmGR9W4X1qsp.webp","https://static.pierrefrey.com/uploads/product/packshots/c75d405d-2b0a-45c6-b12f-8338cd684c89/wTG3my3U0De9M9luNQ44.webp","https://static.pierrefrey.com/uploads/product/packshots/85b52622-95ae-4fb7-b535-9bba049af4b9/5c0Pd5niHSAMI4YjXPsq.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/60147fb5-c257-48fd-af49-0da2f2daa526/wYsolUCXZmGR9W4X1qsp.webp,https://static.pierrefrey.com/uploads/product/packshots/c75d405d-2b0a-45c6-b12f-8338cd684c89/wTG3my3U0De9M9luNQ44.webp,https://static.pierrefrey.com/uploads/product/packshots/85b52622-95ae-4fb7-b535-9bba049af4b9/5c0Pd5niHSAMI4YjXPsq.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:34.465Z"}
+{"mfr_sku":"LP113005","pattern_name":"Floride","color_name":"Rose","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP113005-floride","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 23 cm - 9,00 inch | V: 30 cm - 11,81 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 23 cm - 9,00 inch | V: 30 cm - 11,81 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Floride","description":"Small width printed wallpapers, Floride. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:35.421Z"}
+{"mfr_sku":"FP015001","pattern_name":"Tahiti","color_name":"Oasis","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP015001-tahiti","list_image":"https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 108 cm - 42,51 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY41"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 108 cm - 42,51 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tahiti","description":"Wide width printed wallpapers, Tahiti. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","https://static.pierrefrey.com/uploads/product/packshots/d0967e8a-834c-4aed-8259-ff2c97eea833/042UmZNghLaSFRVmanIv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp,https://static.pierrefrey.com/uploads/product/packshots/d0967e8a-834c-4aed-8259-ff2c97eea833/042UmZNghLaSFRVmanIv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:36.227Z"}
+{"mfr_sku":"FP070001","pattern_name":"Graphic","color_name":"Ocre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP070001-graphic","list_image":"https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flat screen printed","Book":"F9979PPFREY45"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Graphic","description":"Printed wallpapers, Graphic. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/06e90035-7b16-4349-ba31-f79cdb63c492/6tIOay2PQXwD76ddpKB2.webp","https://static.pierrefrey.com/uploads/product/packshots/24f5d3e4-e076-4d35-9154-caa9e5599064/bpd5da8pE4V38PoP2QEl.webp","https://static.pierrefrey.com/uploads/product/packshots/d190ccc3-8c43-4f68-9948-efb45a2e48a0/baLzBZcwkdpPGF4dQ2zU.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/06e90035-7b16-4349-ba31-f79cdb63c492/6tIOay2PQXwD76ddpKB2.webp,https://static.pierrefrey.com/uploads/product/packshots/24f5d3e4-e076-4d35-9154-caa9e5599064/bpd5da8pE4V38PoP2QEl.webp,https://static.pierrefrey.com/uploads/product/packshots/d190ccc3-8c43-4f68-9948-efb45a2e48a0/baLzBZcwkdpPGF4dQ2zU.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:37.180Z"}
+{"mfr_sku":"FP071002","pattern_name":"Craquelin","color_name":"Grege","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP071002-craquelin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1_335x251_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"51 cm / 20,07 inch","Repeat":"H: 51 cm - 20,00 inch | Free match","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY45"},"width":"51 cm / 20,07 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 51 cm - 20,00 inch | Free match","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Craquelin","description":"Printed wallpapers, Craquelin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:37.920Z"}
+{"mfr_sku":"LP109002","pattern_name":"Hankeou","color_name":"Turquoise","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP109002-hankeou","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  3,66 mts","Backing":"PAPER","Composition":"-","Width":"91 cm / 35,82 inch","Repeat":"H: 92 cm - 36,00 inch | V: 111 cm - 43,70 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"91 cm / 35,82 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 92 cm - 36,00 inch | V: 111 cm - 43,70 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  3,66 mts","roll_length":null,"collection":"Hankeou","description":"Small width printed wallpapers, Hankeou. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:38.844Z"}
+{"mfr_sku":"BP370002","pattern_name":"Chantonnay","color_name":"Glycine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP370002-chantonnay","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 104 cm - 40,94 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"B9979PPBRAQ9"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 104 cm - 40,94 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Chantonnay","description":"Wide width printed wallpapers, Chantonnay. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/f4e3e6a4-6b09-4b8d-974a-13da81b34f1a/SEdsMbP0nUxdDEihwENR.webp","https://static.pierrefrey.com/uploads/product/packshots/42786797-4625-4af3-b2df-d958df113f5b/98LWxltHWbV8bbA6Iw32.webp","https://static.pierrefrey.com/uploads/product/packshots/1080696f-4775-4a50-899a-bbd4b2de257f/3kGDuj7c8eiW8Mf1oiP2.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/f4e3e6a4-6b09-4b8d-974a-13da81b34f1a/SEdsMbP0nUxdDEihwENR.webp,https://static.pierrefrey.com/uploads/product/packshots/42786797-4625-4af3-b2df-d958df113f5b/98LWxltHWbV8bbA6Iw32.webp,https://static.pierrefrey.com/uploads/product/packshots/1080696f-4775-4a50-899a-bbd4b2de257f/3kGDuj7c8eiW8Mf1oiP2.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:39.961Z"}
+{"mfr_sku":"FP808001","pattern_name":"Les bolides de stanislas","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP808001-les-bolides-de-stanislas","list_image":"https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 55 cm - 21,65 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY28"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 55 cm - 21,65 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les bolides de stanislas","description":"Wide width printed wallpapers, Les bolides de stanislas. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp","https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp","https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp","https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp","https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp","https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp","https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp","https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp","https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp,https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp,https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp,https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp,https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp,https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp,https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp,https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp,https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:40.722Z"}
+{"mfr_sku":"FP585002","pattern_name":"Broceliande","color_name":"Orage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP585002-broceliande","list_image":"https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 97 cm - 38,18 inch | Half drop repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 97 cm - 38,18 inch | Half drop repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Broceliande","description":"Wide width printed wallpapers, Broceliande. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp","https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp","https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp","https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp","https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp","https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp","https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp","https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp","https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp","https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp","https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp","https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp","https://static.pierrefrey.com/uploads/product/packshots/edac1e3d-3982-4175-97e1-46e309970d86/akKIlpFDKCfEFzr90t7v.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp,https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp,https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp,https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp,https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp,https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp,https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp,https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp,https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp,https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp,https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp,https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp,https://static.pierrefrey.com/uploads/product/packshots/edac1e3d-3982-4175-97e1-46e309970d86/akKIlpFDKCfEFzr90t7v.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:41.349Z"}
+{"mfr_sku":"FP027001","pattern_name":"Neville","color_name":"001","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP027001-neville","list_image":"https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"134 cm / 52,75 inch","Repeat":"Free match","Weight":"235 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"134 cm / 52,75 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"Free match","weight":"235 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Neville","description":"Paperbacked fabrics, Neville. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:42.170Z"}
+{"mfr_sku":"FP076001","pattern_name":"Kusi","color_name":"Tropical","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP076001-kusi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/58d38af7-4920-4b9d-9b0c-43476d53f60b/SHa8z8tytd9MzPtMsjnM_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"85 cm / 33,46 inch","Repeat":"H: 85 cm - 33,00 inch | V: 41 cm - 16,14 inch | Free match","Weight":"265 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY45"},"width":"85 cm / 33,46 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 85 cm - 33,00 inch | V: 41 cm - 16,14 inch | Free match","weight":"265 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Kusi","description":"Paperbacked fabrics - Printed wallpapers, Kusi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/58d38af7-4920-4b9d-9b0c-43476d53f60b/SHa8z8tytd9MzPtMsjnM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/58d38af7-4920-4b9d-9b0c-43476d53f60b/SHa8z8tytd9MzPtMsjnM.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/668a9161-d5db-4973-9da3-40415e31c9e4/pi6f1ccEKqX8FLUoUNnI.webp","https://static.pierrefrey.com/uploads/product/packshots/024fc57a-4d57-455e-9af8-20e1d51a3bfd/U0lpbcl19KZ6s3d6hLgb.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/58d38af7-4920-4b9d-9b0c-43476d53f60b/SHa8z8tytd9MzPtMsjnM.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/668a9161-d5db-4973-9da3-40415e31c9e4/pi6f1ccEKqX8FLUoUNnI.webp,https://static.pierrefrey.com/uploads/product/packshots/024fc57a-4d57-455e-9af8-20e1d51a3bfd/U0lpbcl19KZ6s3d6hLgb.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:43.027Z"}
+{"mfr_sku":"W4864002","pattern_name":"Wallpaper nakai","color_name":"Tobacco","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4864002-wallpaper-nakai","list_image":"https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 59 cm - 23,22 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 59 cm - 23,22 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper nakai","description":"Small width printed wallpapers, Wallpaper nakai. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","https://static.pierrefrey.com/uploads/product/packshots/e10dad45-46a8-4d65-9b6c-ae92fb743c13/KzELlwvD40J1DVPJc3UR.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp,https://static.pierrefrey.com/uploads/product/packshots/e10dad45-46a8-4d65-9b6c-ae92fb743c13/KzELlwvD40J1DVPJc3UR.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:43.912Z"}
+{"mfr_sku":"FP964001","pattern_name":"Touareg","color_name":"Epices","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP964001-touareg","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 118 cm - 46,45 inch | Straight repeat","Weight":"242 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 118 cm - 46,45 inch | Straight repeat","weight":"242 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Touareg","description":"Small width printed wallpapers - Straws and similar materials, Touareg. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:44.664Z"}
+{"mfr_sku":"FP951001","pattern_name":"Foret d'eden","color_name":"Sous-Bois","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP951001-foret-deden","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 129 cm - 50,78 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 129 cm - 50,78 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Foret d'eden","description":"Wide width printed wallpapers, Foret d'eden. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:45.517Z"}
+{"mfr_sku":"FP773001","pattern_name":"Au fil de l'eau","color_name":"Opale","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP773001-au-fil-de-leau","list_image":"https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 72 cm - 28,34 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 72 cm - 28,34 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Au fil de l'eau","description":"Small width printed wallpapers, Au fil de l'eau. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:46.301Z"}
+{"mfr_sku":"FP648017","pattern_name":"Ernesto","color_name":"Glacier","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP648017-ernesto","list_image":"https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod_251x335_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"85 % Polyester - 15 % Acrylic","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"270 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY35"},"width":"140 cm / 55,11 inch","composition":"85 % Polyester - 15 % Acrylic","material":"NON WOVEN","pattern_repeat":"Free match","weight":"270 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ernesto","description":"Plains & semi plains - Paperbacked fabrics, Ernesto. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:47.056Z"}
+{"mfr_sku":"FP870001","pattern_name":"Oka","color_name":"Sorbet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP870001-oka","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 68 cm - 26,00 inch | V: 56 cm - 22,04 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY33"},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 56 cm - 22,04 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Oka","description":"Wide width printed wallpapers, Oka. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp,https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:47.681Z"}
+{"mfr_sku":"FP863004","pattern_name":"Sofia","color_name":"Saumon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP863004-sofia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"490 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY39"},"width":"130 cm / 51,18 inch","composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"490 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sofia","description":"Plains & semi plains - Paperbacked fabrics, Sofia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:48.435Z"}
+{"mfr_sku":"FP777004","pattern_name":"Alpilles","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP777004-alpilles","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 3 cm - 1,00 inch | V: 53 cm - 20,86 inch","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 3 cm - 1,00 inch | V: 53 cm - 20,86 inch","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Alpilles","description":"Small width printed wallpapers, Alpilles. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:49.259Z"}
+{"mfr_sku":"FP006003","pattern_name":"Les anemones","color_name":"Automne","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP006003-les-anemones","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Artist":"Rachael Cocker","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 24 cm - 9,44 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 24 cm - 9,44 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les anemones","description":"Printed wallpapers, Les anemones. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:49.954Z"}
+{"mfr_sku":"BP354001","pattern_name":"Les lilas","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP354001-les-lilas","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"134 cm / 52,75 inch","Repeat":"H: 90 cm - 35,00 inch | V: 43 cm - 16,92 inch | Half drop repeat","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"B9979PPBRAQ9"},"width":"134 cm / 52,75 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 43 cm - 16,92 inch | Half drop repeat","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les lilas","description":"Wide width printed wallpapers - Paperbacked fabrics, Les lilas. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/60147fb5-c257-48fd-af49-0da2f2daa526/wYsolUCXZmGR9W4X1qsp.webp","https://static.pierrefrey.com/uploads/product/packshots/c75d405d-2b0a-45c6-b12f-8338cd684c89/wTG3my3U0De9M9luNQ44.webp","https://static.pierrefrey.com/uploads/product/packshots/85b52622-95ae-4fb7-b535-9bba049af4b9/5c0Pd5niHSAMI4YjXPsq.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/60147fb5-c257-48fd-af49-0da2f2daa526/wYsolUCXZmGR9W4X1qsp.webp,https://static.pierrefrey.com/uploads/product/packshots/c75d405d-2b0a-45c6-b12f-8338cd684c89/wTG3my3U0De9M9luNQ44.webp,https://static.pierrefrey.com/uploads/product/packshots/85b52622-95ae-4fb7-b535-9bba049af4b9/5c0Pd5niHSAMI4YjXPsq.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:50.936Z"}
+{"mfr_sku":"BP328004","pattern_name":"La comedie","color_name":"Bp328004","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP328004-la-comedie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"B9979PPBRAQ4"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"La comedie","description":"Small width printed wallpapers, La comedie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:51.738Z"}
+{"mfr_sku":"FP460001","pattern_name":"Erable","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP460001-erable","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5c05e857-bdfd-41a0-8497-bcd28fa181dc/eamfDQRX0sC9tgWDS8Nb_335x251_webp.webp","specs":{"Type":"Embossed patterns - Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"70 % Linen - 18 % Wool - 8 % Viscose - 4 % Polyester","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"335 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"140 cm / 55,11 inch","composition":"70 % Linen - 18 % Wool - 8 % Viscose - 4 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"335 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Erable","description":"Embossed patterns - Plains & semi plains - Paperbacked fabrics, Erable. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5c05e857-bdfd-41a0-8497-bcd28fa181dc/eamfDQRX0sC9tgWDS8Nb.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5c05e857-bdfd-41a0-8497-bcd28fa181dc/eamfDQRX0sC9tgWDS8Nb.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5c05e857-bdfd-41a0-8497-bcd28fa181dc/eamfDQRX0sC9tgWDS8Nb.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:52.467Z"}
+{"mfr_sku":"FP819001","pattern_name":"Les flamants roses","color_name":"Rose","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP819001-les-flamants-roses","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 68 cm - 26,00 inch | V: 69 cm - 27,16 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY28"},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 69 cm - 27,16 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les flamants roses","description":"Wide width printed wallpapers, Les flamants roses. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp","https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp","https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp","https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp","https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp","https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp","https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp","https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp","https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp,https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp,https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp,https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp,https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp,https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp,https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp,https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp,https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:53.099Z"}
+{"mfr_sku":"FP044001","pattern_name":"Kawachi","color_name":"Cerisier","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP044001-kawachi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 165 cm - 64,96 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY44"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 165 cm - 64,96 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Kawachi","description":"Wide width printed wallpapers, Kawachi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:54.003Z"}
+{"mfr_sku":"BP353002","pattern_name":"Therese","color_name":"Citron","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP353002-therese","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"70 % Cotton - 30 % Polyester","Width":"140 cm / 55,11 inch","Repeat":"H: 28 cm - 11,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"330 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"B9979PPBRAQ9"},"width":"140 cm / 55,11 inch","composition":"70 % Cotton - 30 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 28 cm - 11,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"330 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Therese","description":"Wide width printed wallpapers - Paperbacked fabrics, Therese. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:54.947Z"}
+{"mfr_sku":"FP842003","pattern_name":"Water lily","color_name":"Terracotta","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP842003-water-lily","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 110 cm - 43,30 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 110 cm - 43,30 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Water lily","description":"Wide width printed wallpapers, Water lily. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:55.701Z"}
+{"mfr_sku":"FP847003","pattern_name":"Praslin","color_name":"Eteindien","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP847003-praslin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 49 cm - 19,00 inch | V: 49 cm - 19,29 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 49 cm - 19,00 inch | V: 49 cm - 19,29 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Praslin","description":"Wide width printed wallpapers - Vinyls, Praslin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:56.469Z"}
+{"mfr_sku":"FP565004","pattern_name":"Tampa","color_name":"Jungle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP565004-tampa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"460 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tampa","description":"Small width printed wallpapers - Vinyls, Tampa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp","https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp","https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp","https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp","https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp","https://static.pierrefrey.com/uploads/product/packshots/df9f729e-3459-481e-9ff4-33eb57a2bbaf/TtWUkFZPTdKTpWIvHoQY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp,https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp,https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp,https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp,https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp,https://static.pierrefrey.com/uploads/product/packshots/df9f729e-3459-481e-9ff4-33eb57a2bbaf/TtWUkFZPTdKTpWIvHoQY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:57.219Z"}
+{"mfr_sku":"BP361003","pattern_name":"La discrete","color_name":"Rouge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP361003-la-discrete","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"La discrete","description":"Small width printed wallpapers, La discrete. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:58.090Z"}
+{"mfr_sku":"FP913001","pattern_name":"Au bord du lac","color_name":"Sousbois","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP913001-au-bord-du-lac","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5f3d4cf5-7af3-4c1f-b958-aebd2f022fb8/fvlBdg0Ct4M1MXQpRyIh_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Panoramic wallpapers","Sales Unit":"Full panoramic  174 cm x 300 cm ( 2 lengths  87 cm x 300 cm) -  68,50 in x 118,11 in( 2 lengths  34,25 in x 118,11 in)","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"87 cm / 34,25 inch","Repeat":"H: 174 cm - 68,00 inch | V: 300 cm - 118,11 inch","Weight":"300 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 2 panels"},"width":"87 cm / 34,25 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 174 cm - 68,00 inch | V: 300 cm - 118,11 inch","weight":"300 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  174 cm x 300 cm ( 2 lengths  87 cm x 300 cm) -  68,50 in x 118,11 in( 2 lengths  34,25 in x 118,11 in)","roll_length":null,"collection":"Au bord du lac","description":"Small width printed wallpapers - Panoramic wallpapers, Au bord du lac. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5f3d4cf5-7af3-4c1f-b958-aebd2f022fb8/fvlBdg0Ct4M1MXQpRyIh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5f3d4cf5-7af3-4c1f-b958-aebd2f022fb8/fvlBdg0Ct4M1MXQpRyIh.webp","https://static.pierrefrey.com/uploads/product/packshots/3a22aba6-4311-4c08-b522-8c481d2826b6/tqfbdRrZdH0hGvGBIDG2.webp","https://static.pierrefrey.com/uploads/product/packshots/5f566685-ee62-4945-aefe-4d3ae02e2711/h4DnqeB6BEEtgk9RF8ds.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/5f3d4cf5-7af3-4c1f-b958-aebd2f022fb8/iQ5EddKUVZI0UDpQbaOg.png"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5f3d4cf5-7af3-4c1f-b958-aebd2f022fb8/fvlBdg0Ct4M1MXQpRyIh.webp,https://static.pierrefrey.com/uploads/product/packshots/3a22aba6-4311-4c08-b522-8c481d2826b6/tqfbdRrZdH0hGvGBIDG2.webp,https://static.pierrefrey.com/uploads/product/packshots/5f566685-ee62-4945-aefe-4d3ae02e2711/h4DnqeB6BEEtgk9RF8ds.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/5f3d4cf5-7af3-4c1f-b958-aebd2f022fb8/iQ5EddKUVZI0UDpQbaOg.png","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/5f3d4cf5-7af3-4c1f-b958-aebd2f022fb8/iQ5EddKUVZI0UDpQbaOg.png","product_type":"wallcovering","scraped_at":"2026-07-07T20:12:58.696Z"}
+{"mfr_sku":"BP375001","pattern_name":"L arbre aux oiseaux coordonne","color_name":"'Arbre Aux Oiseaux Coordo","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP375001-l-arbre-aux-oiseaux-coordonne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"133 cm / 52,36 inch","Repeat":"H: 44 cm - 17,00 inch | V: 75 cm - 29,52 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"B9979PPBRAQ8"},"width":"133 cm / 52,36 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 44 cm - 17,00 inch | V: 75 cm - 29,52 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"L arbre aux oiseaux coordonne","description":"Wide width printed wallpapers, L arbre aux oiseaux coordonne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:12:59.798Z"}
+{"mfr_sku":"FP911001","pattern_name":"Les carpes","color_name":"Argent","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP911001-les-carpes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5f566685-ee62-4945-aefe-4d3ae02e2711/h4DnqeB6BEEtgk9RF8ds_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics - Panoramic wallpapers","Sales Unit":"Full panoramic  261 cm x 300 cm ( 3 lengths  87 cm x 300 cm) - 102,75 in x 118,11 in( 3 lengths  34,25 in x 118,11 in)","Backing":"NON WOVEN","Composition":"65 % Silk - 35 % metallised yarn Lurex","Width":"87 cm / 34,25 inch","Repeat":"H: 261 cm - 102,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"224 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Notes":"Good lightfastness | Sold as a complete artwork","Information":"1 roll = 3 panels"},"width":"87 cm / 34,25 inch","composition":"65 % Silk - 35 % metallised yarn Lurex","material":"NON WOVEN","pattern_repeat":"H: 261 cm - 102,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"224 gr / m²","certifications":null,"sales_unit":"Full panoramic  261 cm x 300 cm ( 3 lengths  87 cm x 300 cm) - 102,75 in x 118,11 in( 3 lengths  34,25 in x 118,11 in)","roll_length":null,"collection":"Les carpes","description":"Small width printed wallpapers - Paperbacked fabrics - Panoramic wallpapers, Les carpes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5f566685-ee62-4945-aefe-4d3ae02e2711/h4DnqeB6BEEtgk9RF8ds.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5f566685-ee62-4945-aefe-4d3ae02e2711/h4DnqeB6BEEtgk9RF8ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3a22aba6-4311-4c08-b522-8c481d2826b6/tqfbdRrZdH0hGvGBIDG2.webp","https://static.pierrefrey.com/uploads/product/packshots/5f3d4cf5-7af3-4c1f-b958-aebd2f022fb8/fvlBdg0Ct4M1MXQpRyIh.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/5f566685-ee62-4945-aefe-4d3ae02e2711/z3dPhQd6gSiSiFJwk2zJ.png"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5f566685-ee62-4945-aefe-4d3ae02e2711/h4DnqeB6BEEtgk9RF8ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3a22aba6-4311-4c08-b522-8c481d2826b6/tqfbdRrZdH0hGvGBIDG2.webp,https://static.pierrefrey.com/uploads/product/packshots/5f3d4cf5-7af3-4c1f-b958-aebd2f022fb8/fvlBdg0Ct4M1MXQpRyIh.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/5f566685-ee62-4945-aefe-4d3ae02e2711/z3dPhQd6gSiSiFJwk2zJ.png","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/5f566685-ee62-4945-aefe-4d3ae02e2711/z3dPhQd6gSiSiFJwk2zJ.png","product_type":"wallcovering","scraped_at":"2026-07-07T20:13:00.551Z"}
+{"mfr_sku":"FP786002","pattern_name":"Arlesienne","color_name":"Mimosa","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP786002-arlesienne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Arlesienne","description":"Small width printed wallpapers, Arlesienne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","https://static.pierrefrey.com/uploads/product/packshots/ec27716e-f91a-4215-b600-85e7b4961402/Pxz49wGzCTfN9gJzQccH.webp","https://static.pierrefrey.com/uploads/product/packshots/065100da-5ea5-4f01-9af4-e6a8e1397bfb/bCdgUaNskRc73diUe722.webp","https://static.pierrefrey.com/uploads/product/packshots/fe3cff35-bc90-4537-ba7f-6a379a84b390/icokPHHV8Lvq79JJc1wo.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp,https://static.pierrefrey.com/uploads/product/packshots/ec27716e-f91a-4215-b600-85e7b4961402/Pxz49wGzCTfN9gJzQccH.webp,https://static.pierrefrey.com/uploads/product/packshots/065100da-5ea5-4f01-9af4-e6a8e1397bfb/bCdgUaNskRc73diUe722.webp,https://static.pierrefrey.com/uploads/product/packshots/fe3cff35-bc90-4537-ba7f-6a379a84b390/icokPHHV8Lvq79JJc1wo.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:02.135Z"}
+{"mfr_sku":"FP946004","pattern_name":"Toile de nantes intisse","color_name":"Herbe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP946004-toile-de-nantes-intisse","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"127 cm / 50,00 inch","Repeat":"H: 42 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Flat screen printed","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"127 cm / 50,00 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 42 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Toile de nantes intisse","description":"Wide width printed wallpapers, Toile de nantes intisse. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp","https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp","https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp","https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp","https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp","https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp,https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp,https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp,https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp,https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp,https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:03.281Z"}
+{"mfr_sku":"FP192002","pattern_name":"Alexandrie","color_name":"BéGonia","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP192002-alexandrie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 121 cm - 47,63 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 121 cm - 47,63 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Alexandrie","description":"Small width printed wallpapers, Alexandrie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/54a9e038-c0b3-4484-8b56-7a6322303922/4BbopEcO3K7JxCfLrce3.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/54a9e038-c0b3-4484-8b56-7a6322303922/4BbopEcO3K7JxCfLrce3.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:04.333Z"}
+{"mfr_sku":"LP109001","pattern_name":"Hankeou","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP109001-hankeou","list_image":"https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  3,66 mts","Backing":"PAPER","Composition":"-","Width":"91 cm / 35,82 inch","Repeat":"H: 92 cm - 36,00 inch | V: 111 cm - 43,70 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"91 cm / 35,82 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 92 cm - 36,00 inch | V: 111 cm - 43,70 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  3,66 mts","roll_length":null,"collection":"Hankeou","description":"Small width printed wallpapers, Hankeou. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:05.281Z"}
+{"mfr_sku":"FP771001","pattern_name":"Poseidon","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP771001-poseidon","list_image":"https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Artist":"Irène Rohr","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Poseidon","description":"Small width printed wallpapers, Poseidon. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","https://static.pierrefrey.com/uploads/product/packshots/3528fd8c-0a1b-4c5d-87b4-2ea76c21c9a3/Wy5ZAqReBSh0zL3k8Oor.webp","https://static.pierrefrey.com/uploads/product/packshots/23b1a953-55ac-4cd2-8655-1b26c9957461/kKR5EtoNToVbHh8j4znW.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp,https://static.pierrefrey.com/uploads/product/packshots/3528fd8c-0a1b-4c5d-87b4-2ea76c21c9a3/Wy5ZAqReBSh0zL3k8Oor.webp,https://static.pierrefrey.com/uploads/product/packshots/23b1a953-55ac-4cd2-8655-1b26c9957461/kKR5EtoNToVbHh8j4znW.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:06.300Z"}
+{"mfr_sku":"FP197001","pattern_name":"Ming","color_name":"Pewter","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP197001-ming","list_image":"https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 64 cm - 25,19 inch | Straight repeat","Weight":"202 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 64 cm - 25,19 inch | Straight repeat","weight":"202 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Ming","description":"Small width printed wallpapers, Ming. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/22fe4eb0-2653-42a7-8e8a-1d5fb33039a9/3zsr2jakqOU0eOiiRf8c.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/22fe4eb0-2653-42a7-8e8a-1d5fb33039a9/3zsr2jakqOU0eOiiRf8c.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:07.083Z"}
+{"mfr_sku":"FP322001","pattern_name":"Jour de fete","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP322001-jour-de-fete","list_image":"https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"140 cm / 55,11 inch","Repeat":"V: 140 cm - 55,11 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"140 cm / 55,11 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"V: 140 cm - 55,11 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Jour de fete","description":"Wide width printed wallpapers, Jour de fete. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp","https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp","https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp","https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp","https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp","https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp","https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp,https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp,https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp,https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp,https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp,https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp,https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:07.758Z"}
+{"mfr_sku":"BP207004","pattern_name":"Wallpaper les muses et le lion","color_name":"Ochre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP207004-wallpaper-les-muses-et-le-lion","list_image":"https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"71 cm / 27,95 inch","Repeat":"V: 74 cm - 29,13 inch | Straight repeat","Weight":"196 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"71 cm / 27,95 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 74 cm - 29,13 inch | Straight repeat","weight":"196 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper les muses et le lion","description":"Small width printed wallpapers, Wallpaper les muses et le lion. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:08.479Z"}
+{"mfr_sku":"BP352002","pattern_name":"Coulonges semis","color_name":"Mandarine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP352002-coulonges-semis","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1_335x251_webp.webp","specs":{"Type":"Embossed patterns - Paperbacked fabrics - Embroideries","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"80 % Linen - 14 % Viscose - 6 % Polyester","Width":"129 cm / 50,78 inch","Repeat":"H: 13 cm - 5,00 inch | V: 10 cm - 3,93 inch | Straight repeat","Weight":"383 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"B9979PPBRAQ9"},"width":"129 cm / 50,78 inch","composition":"80 % Linen - 14 % Viscose - 6 % Polyester","material":"PAPER","pattern_repeat":"H: 13 cm - 5,00 inch | V: 10 cm - 3,93 inch | Straight repeat","weight":"383 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Coulonges semis","description":"Embossed patterns - Paperbacked fabrics - Embroideries, Coulonges semis. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/2130a347-38ff-4419-8e04-f9a4b6f231f7/ugJXuO4zuKuv8JiUdfzW.webp","https://static.pierrefrey.com/uploads/product/packshots/bef92d8f-65da-4275-b3fa-bd370c9608fb/FHhdEeG4wUQ8uiwpRoSN.webp","https://static.pierrefrey.com/uploads/product/packshots/5244cdee-9042-493c-90c4-819e70b4e7ee/4uGPpnLVJxPxhuBxKHtk.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/2130a347-38ff-4419-8e04-f9a4b6f231f7/ugJXuO4zuKuv8JiUdfzW.webp,https://static.pierrefrey.com/uploads/product/packshots/bef92d8f-65da-4275-b3fa-bd370c9608fb/FHhdEeG4wUQ8uiwpRoSN.webp,https://static.pierrefrey.com/uploads/product/packshots/5244cdee-9042-493c-90c4-819e70b4e7ee/4uGPpnLVJxPxhuBxKHtk.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:09.440Z"}
+{"mfr_sku":"FP545001","pattern_name":"Watsonia","color_name":"Vanille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP545001-watsonia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/635bcf54-34f4-4924-a73b-77ce2b3b99a0/X64LKDXUY444jAfnx5rg_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Watsonia","description":"Small width printed wallpapers, Watsonia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/635bcf54-34f4-4924-a73b-77ce2b3b99a0/X64LKDXUY444jAfnx5rg.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/635bcf54-34f4-4924-a73b-77ce2b3b99a0/X64LKDXUY444jAfnx5rg.webp","https://static.pierrefrey.com/uploads/product/packshots/651e7b89-f90c-4d27-915c-2a6640178d48/Z5hmy8ajNkFB5g9Sk6er.webp","https://static.pierrefrey.com/uploads/product/packshots/c3a7e753-89c6-4816-8e67-87182797f0ae/y8JHvoGO1pLOPtMN4doV.webp","https://static.pierrefrey.com/uploads/product/packshots/cd301856-4b9f-45e5-8d89-4dd2f8832b7a/YbaxpDQdi6omQSD1ybMt.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/635bcf54-34f4-4924-a73b-77ce2b3b99a0/X64LKDXUY444jAfnx5rg.webp,https://static.pierrefrey.com/uploads/product/packshots/651e7b89-f90c-4d27-915c-2a6640178d48/Z5hmy8ajNkFB5g9Sk6er.webp,https://static.pierrefrey.com/uploads/product/packshots/c3a7e753-89c6-4816-8e67-87182797f0ae/y8JHvoGO1pLOPtMN4doV.webp,https://static.pierrefrey.com/uploads/product/packshots/cd301856-4b9f-45e5-8d89-4dd2f8832b7a/YbaxpDQdi6omQSD1ybMt.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:10.149Z"}
+{"mfr_sku":"W4979022","pattern_name":"Wallpaper odalys","color_name":"Sky","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4979022-wallpaper-odalys","list_image":"https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"70 cm / 27,55 inch","Repeat":"V: 63 cm - 24,80 inch | Half drop repeat","Weight":"185 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"70 cm / 27,55 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 63 cm - 24,80 inch | Half drop repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper odalys","description":"Small width printed wallpapers, Wallpaper odalys. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:10.982Z"}
+{"mfr_sku":"FP534002","pattern_name":"Coban","color_name":"PéTale","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP534002-coban","list_image":"https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Extra washable"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Coban","description":"Small width printed wallpapers - Vinyls, Coban. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp","https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp","https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp","https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp","https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp","https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp","https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp","https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp","https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp,https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp,https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp,https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp,https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp,https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp,https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp,https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp,https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:11.587Z"}
+{"mfr_sku":"BP327003","pattern_name":"Les ombrelles rayure","color_name":"Craie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP327003-les-ombrelles-rayure","list_image":"https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 1 cm - | Free match","Weight":"190 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 1 cm - | Free match","weight":"190 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les ombrelles rayure","description":"Small width printed wallpapers, Les ombrelles rayure. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:12.465Z"}
+{"mfr_sku":"FP009001","pattern_name":"Acropora","color_name":"Corail","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP009001-acropora","list_image":"https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 88 cm - 34,64 inch | Straight repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY41"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 88 cm - 34,64 inch | Straight repeat","weight":"240 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Acropora","description":"Straws and similar materials - Printed wallpapers, Acropora. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:13.269Z"}
+{"mfr_sku":"FP051001","pattern_name":"Les fleurs de cerisiers","color_name":"Brume","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP051001-les-fleurs-de-cerisiers","list_image":"https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr_251x335_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"85 cm / 33,46 inch","Repeat":"H: 85 cm - 33,00 inch | V: 63 cm - 24,80 inch | Straight repeat","Weight":"250 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Raised pattern"},"width":"85 cm / 33,46 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 85 cm - 33,00 inch | V: 63 cm - 24,80 inch | Straight repeat","weight":"250 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les fleurs de cerisiers","description":"Printed wallpapers, Les fleurs de cerisiers. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:14.166Z"}
+{"mfr_sku":"FP996001","pattern_name":"Musiques du monde","color_name":"Multicolo","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP996001-musiques-du-monde","list_image":"https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9_335x251_webp.webp","specs":{"Type":"Panoramic wallpapers - Printed wallpapers","Artist":"Mappemonde,Brecht Evens,Philharmonie Des","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"-","Width":"100 cm / 39,37 inch","Repeat":"H: 600 cm - 236,00 inch | V: 300 cm - 118,11 inch","Weight":"185 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork"},"width":"100 cm / 39,37 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 600 cm - 236,00 inch | V: 300 cm - 118,11 inch","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per panel","roll_length":null,"collection":"Musiques du monde","description":"Panoramic wallpapers - Printed wallpapers, Musiques du monde. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp","https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp","https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp","https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp","https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp","https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp","https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp","https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp","https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp","https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp","https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp,https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp,https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp,https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp,https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp,https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp,https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp,https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp,https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp,https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp,https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:14.937Z"}
+{"mfr_sku":"FP932002","pattern_name":"Gisele","color_name":"Ivoire","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP932002-gisele","list_image":"https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"62 % Cotton - 22 % Viscose - 16 % Polyester","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"350 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY36"},"width":"130 cm / 51,18 inch","composition":"62 % Cotton - 22 % Viscose - 16 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"350 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Gisele","description":"Plains & semi plains - Paperbacked fabrics, Gisele. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:15.803Z"}
+{"mfr_sku":"FP019001","pattern_name":"Natalia","color_name":"Ivoire","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP019001-natalia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"96 % Linen - 4 % Polyamide","Width":"140 cm / 55,11 inch","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"140 cm / 55,11 inch","composition":"96 % Linen - 4 % Polyamide","material":"NON WOVEN","pattern_repeat":null,"weight":"400 gr / m²","certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Natalia","description":"Paperbacked fabrics, Natalia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:16.552Z"}
+{"mfr_sku":"FP545002","pattern_name":"Watsonia","color_name":"Goyave","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP545002-watsonia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/651e7b89-f90c-4d27-915c-2a6640178d48/Z5hmy8ajNkFB5g9Sk6er_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Watsonia","description":"Small width printed wallpapers, Watsonia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/651e7b89-f90c-4d27-915c-2a6640178d48/Z5hmy8ajNkFB5g9Sk6er.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/651e7b89-f90c-4d27-915c-2a6640178d48/Z5hmy8ajNkFB5g9Sk6er.webp","https://static.pierrefrey.com/uploads/product/packshots/635bcf54-34f4-4924-a73b-77ce2b3b99a0/X64LKDXUY444jAfnx5rg.webp","https://static.pierrefrey.com/uploads/product/packshots/c3a7e753-89c6-4816-8e67-87182797f0ae/y8JHvoGO1pLOPtMN4doV.webp","https://static.pierrefrey.com/uploads/product/packshots/cd301856-4b9f-45e5-8d89-4dd2f8832b7a/YbaxpDQdi6omQSD1ybMt.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/651e7b89-f90c-4d27-915c-2a6640178d48/Z5hmy8ajNkFB5g9Sk6er.webp,https://static.pierrefrey.com/uploads/product/packshots/635bcf54-34f4-4924-a73b-77ce2b3b99a0/X64LKDXUY444jAfnx5rg.webp,https://static.pierrefrey.com/uploads/product/packshots/c3a7e753-89c6-4816-8e67-87182797f0ae/y8JHvoGO1pLOPtMN4doV.webp,https://static.pierrefrey.com/uploads/product/packshots/cd301856-4b9f-45e5-8d89-4dd2f8832b7a/YbaxpDQdi6omQSD1ybMt.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:17.156Z"}
+{"mfr_sku":"FP372001","pattern_name":"Ebene","color_name":"éCru","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP372001-ebene","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"135 cm / 53,14 inch","Repeat":"H: 35 cm - 13,00 inch | V: 91 cm - 35,82 inch | No side match","Weight":"452 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect"},"width":"135 cm / 53,14 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 35 cm - 13,00 inch | V: 91 cm - 35,82 inch | No side match","weight":"452 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ebene","description":"Wide width printed wallpapers, Ebene. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP.webp","https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI.webp","https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw.webp","https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP.webp,https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI.webp,https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw.webp,https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:17.876Z"}
+{"mfr_sku":"FP793010","pattern_name":"Nimes","color_name":"Cacao","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP793010-nimes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"Free match","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY27"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"205 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nimes","description":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics, Nimes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp","https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp","https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp","https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp","https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp","https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp","https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp","https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp","https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp,https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp,https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp,https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp,https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp,https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp,https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp,https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp,https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:18.664Z"}
+{"mfr_sku":"FP328001","pattern_name":"Mojito","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP328001-mojito","list_image":"https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"52 cm / 20,47 inch","Repeat":"V: 61 cm - 24,01 inch | Straight repeat","Weight":"195 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Notes":"Good lightfastness | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"V: 61 cm - 24,01 inch | Straight repeat","weight":"195 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Mojito","description":"Small width printed wallpapers, Mojito. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp","https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp","https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp","https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp","https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp","https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp","https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp","https://static.pierrefrey.com/uploads/product/packshots/a866cb9e-f5ad-42a1-8803-a2cd9e5698ef/9qPCLzUjqeRSd42OvUUs.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp,https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp,https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp,https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp,https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp,https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp,https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp,https://static.pierrefrey.com/uploads/product/packshots/a866cb9e-f5ad-42a1-8803-a2cd9e5698ef/9qPCLzUjqeRSd42OvUUs.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:19.412Z"}
+{"mfr_sku":"BP204003","pattern_name":"Le grand corail","color_name":"Old Blue","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP204003-le-grand-corail","list_image":"https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 122 cm - 48,03 inch | Half drop repeat","Weight":"174 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 68 cm - 26,00 inch | V: 122 cm - 48,03 inch | Half drop repeat","weight":"174 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Le grand corail","description":"Small width printed wallpapers, Le grand corail. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/bcfcb3ac-a550-4dba-b3d8-a05ee2763d4e/ePxIUrvVgRBZxyWni0yX.webp","https://static.pierrefrey.com/uploads/product/packshots/4cdb57a4-482d-480a-80ac-a83d2f0a98c7/X28H65P6RNwEvlXFrn5U.webp","https://static.pierrefrey.com/uploads/product/packshots/7f7d6688-ff26-4171-8519-1103b3e4679c/XKKbBDA5qD2Y5X9WCWKC.webp","https://static.pierrefrey.com/uploads/product/packshots/bad08a74-23dc-44a5-888d-753eea6fd9e9/oaFfCJNfbbzEtU67upg2.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/bcfcb3ac-a550-4dba-b3d8-a05ee2763d4e/ePxIUrvVgRBZxyWni0yX.webp,https://static.pierrefrey.com/uploads/product/packshots/4cdb57a4-482d-480a-80ac-a83d2f0a98c7/X28H65P6RNwEvlXFrn5U.webp,https://static.pierrefrey.com/uploads/product/packshots/7f7d6688-ff26-4171-8519-1103b3e4679c/XKKbBDA5qD2Y5X9WCWKC.webp,https://static.pierrefrey.com/uploads/product/packshots/bad08a74-23dc-44a5-888d-753eea6fd9e9/oaFfCJNfbbzEtU67upg2.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:20.360Z"}
+{"mfr_sku":"W4566001","pattern_name":"Wallpaper marly","color_name":"Spruce","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4566001-wallpaper-marly","list_image":"https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 79 cm - 31,10 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 79 cm - 31,10 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper marly","description":"Small width printed wallpapers, Wallpaper marly. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:21.114Z"}
+{"mfr_sku":"FP636002","pattern_name":"Le jardin du palais","color_name":"Lever Du Jour","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP636002-le-jardin-du-palais","list_image":"https://static.pierrefrey.com/uploads/product/packshots/661d30fe-f671-4498-8597-0902be59a25b/k9NEsc8aNQf97vckadNr_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"94 cm / 37,00 inch","Repeat":"H: 94 cm - 37,00 inch | V: 93 cm - 36,61 inch | Half drop repeat","Weight":"195 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"94 cm / 37,00 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 94 cm - 37,00 inch | V: 93 cm - 36,61 inch | Half drop repeat","weight":"195 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le jardin du palais","description":"Wide width printed wallpapers, Le jardin du palais. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/661d30fe-f671-4498-8597-0902be59a25b/k9NEsc8aNQf97vckadNr.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/661d30fe-f671-4498-8597-0902be59a25b/k9NEsc8aNQf97vckadNr.webp","https://static.pierrefrey.com/uploads/product/packshots/923e805b-e9b9-490b-8c68-29b5509fa518/jVjKSUjKlB9HdCMdss6S.webp","https://static.pierrefrey.com/uploads/product/packshots/3e987e23-20b0-476a-b8ff-9421d4f245f5/hdD2cK4R1LCAQX0Ez8bP.webp","https://static.pierrefrey.com/uploads/product/packshots/7372e397-a80f-4db6-a92e-6a9214748e02/sMpt40w6dZWtg4gqBiFG.webp","https://static.pierrefrey.com/uploads/product/packshots/a5705ed4-6f64-4815-b7e3-6abf5900eb20/N5j9HGebY96MMxvxKQiD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/661d30fe-f671-4498-8597-0902be59a25b/k9NEsc8aNQf97vckadNr.webp,https://static.pierrefrey.com/uploads/product/packshots/923e805b-e9b9-490b-8c68-29b5509fa518/jVjKSUjKlB9HdCMdss6S.webp,https://static.pierrefrey.com/uploads/product/packshots/3e987e23-20b0-476a-b8ff-9421d4f245f5/hdD2cK4R1LCAQX0Ez8bP.webp,https://static.pierrefrey.com/uploads/product/packshots/7372e397-a80f-4db6-a92e-6a9214748e02/sMpt40w6dZWtg4gqBiFG.webp,https://static.pierrefrey.com/uploads/product/packshots/a5705ed4-6f64-4815-b7e3-6abf5900eb20/N5j9HGebY96MMxvxKQiD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:21.787Z"}
+{"mfr_sku":"FP943003","pattern_name":"Minneapolis","color_name":"Landes","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP943003-minneapolis","list_image":"https://static.pierrefrey.com/uploads/product/packshots/66232b75-1f27-4d8b-9947-2ea23a081adb/U2TWxAaz8zfD5d4pwTsB_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Artist":"Élise Djo-Bourgeois","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 48 cm - 18,89 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique","Book":"F9979PPFREY38"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 48 cm - 18,89 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Minneapolis","description":"Small width printed wallpapers, Minneapolis. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/66232b75-1f27-4d8b-9947-2ea23a081adb/U2TWxAaz8zfD5d4pwTsB.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/66232b75-1f27-4d8b-9947-2ea23a081adb/U2TWxAaz8zfD5d4pwTsB.webp","https://static.pierrefrey.com/uploads/product/packshots/fb295663-6851-4a97-9d69-ee1698fcb952/19E6SrSWlmRBz7Bfj8WU.webp","https://static.pierrefrey.com/uploads/product/packshots/8766317b-834c-45ce-97dd-ae593ef38792/bgPQjzrIm5V2jqeuTo25.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/66232b75-1f27-4d8b-9947-2ea23a081adb/U2TWxAaz8zfD5d4pwTsB.webp,https://static.pierrefrey.com/uploads/product/packshots/fb295663-6851-4a97-9d69-ee1698fcb952/19E6SrSWlmRBz7Bfj8WU.webp,https://static.pierrefrey.com/uploads/product/packshots/8766317b-834c-45ce-97dd-ae593ef38792/bgPQjzrIm5V2jqeuTo25.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:22.554Z"}
+{"mfr_sku":"FP838002","pattern_name":"Momiji","color_name":"Or","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP838002-momiji","list_image":"https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"H: 90 cm - 35,00 inch | V: 109 cm - 42,91 inch | Half drop repeat","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 109 cm - 42,91 inch | Half drop repeat","weight":"205 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Momiji","description":"Wide width printed wallpapers - Paperbacked fabrics, Momiji. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:23.444Z"}
+{"mfr_sku":"W4764006","pattern_name":"Wallpaper dandy","color_name":"Black","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4764006-wallpaper-dandy","list_image":"https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 63 cm - 24,80 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 63 cm - 24,80 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper dandy","description":"Small width printed wallpapers, Wallpaper dandy. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:24.293Z"}
+{"mfr_sku":"FP069004","pattern_name":"Ceylan","color_name":"Jungle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP069004-ceylan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 48 cm - 18,89 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 48 cm - 18,89 inch | Half drop repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Ceylan","description":"Small width printed wallpapers - Printed wallpapers, Ceylan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:25.210Z"}
+{"mfr_sku":"FP069003","pattern_name":"Ceylan","color_name":"Terracotta","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP069003-ceylan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 48 cm - 18,89 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 48 cm - 18,89 inch | Half drop repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Ceylan","description":"Small width printed wallpapers - Printed wallpapers, Ceylan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:25.965Z"}
+{"mfr_sku":"FP034001","pattern_name":"Yelena","color_name":"Neige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP034001-yelena","list_image":"https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 136 cm - 53,00 inch | V: 117 cm - 46,06 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Book":"F9979PPFREY43"},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 136 cm - 53,00 inch | V: 117 cm - 46,06 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Yelena","description":"Wide width printed wallpapers, Yelena. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:26.886Z"}
+{"mfr_sku":"FP975004","pattern_name":"Tikehau","color_name":"Noir","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP975004-tikehau","list_image":"https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 86 cm - 33,85 inch | Straight repeat","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 86 cm - 33,85 inch | Straight repeat","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tikehau","description":"Small width printed wallpapers - Straws and similar materials, Tikehau. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:27.511Z"}
+{"mfr_sku":"BP202003","pattern_name":"Wallpaper peinture","color_name":"Aqua","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP202003-wallpaper-peinture","list_image":"https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"71 cm / 27,95 inch","Repeat":"V: 76 cm - 29,92 inch | Half drop repeat","Weight":"168 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"71 cm / 27,95 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 76 cm - 29,92 inch | Half drop repeat","weight":"168 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper peinture","description":"Small width printed wallpapers, Wallpaper peinture. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:28.230Z"}
+{"mfr_sku":"FP164001","pattern_name":"Wallpaper bazoches","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP164001-wallpaper-bazoches","list_image":"https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  3,66 mts","Backing":"PAPER","Composition":"-","Width":"78 cm / 30,70 inch","Repeat":"V: 61 cm - 24,01 inch | Straight repeat","Weight":"226 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"78 cm / 30,70 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 61 cm - 24,01 inch | Straight repeat","weight":"226 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  3,66 mts","roll_length":null,"collection":"Wallpaper bazoches","description":"Small width printed wallpapers, Wallpaper bazoches. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:29.135Z"}
+{"mfr_sku":"BP209B02","pattern_name":"Wallpaper septeuil","color_name":"Pink Red","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP209B02-wallpaper-septeuil","list_image":"https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 103 cm - 40,55 inch | Straight repeat","Weight":"203 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 103 cm - 40,55 inch | Straight repeat","weight":"203 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper septeuil","description":"Small width printed wallpapers, Wallpaper septeuil. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:29.809Z"}
+{"mfr_sku":"FP075001","pattern_name":"Ikati","color_name":"Agave","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP075001-ikati","list_image":"https://static.pierrefrey.com/uploads/product/packshots/695190cc-3b87-4130-a1ce-fc7dca786802/gXKw7eMvezbFT5KJvuVd_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"85 cm / 33,46 inch","Repeat":"H: 85 cm - 33,00 inch | V: 89 cm - 35,03 inch | Free match","Weight":"265 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY45"},"width":"85 cm / 33,46 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 85 cm - 33,00 inch | V: 89 cm - 35,03 inch | Free match","weight":"265 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ikati","description":"Paperbacked fabrics - Printed wallpapers, Ikati. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/695190cc-3b87-4130-a1ce-fc7dca786802/gXKw7eMvezbFT5KJvuVd.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/695190cc-3b87-4130-a1ce-fc7dca786802/gXKw7eMvezbFT5KJvuVd.webp","https://static.pierrefrey.com/uploads/product/packshots/09afd485-6174-4c96-9c7e-f6a4c73024e7/uGsdcgLHiN9nHNYdiwVS.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/882de925-95bc-4b95-a346-675c0cf689e0/RtkcBAyuzEiBZf9Sfo4G.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/695190cc-3b87-4130-a1ce-fc7dca786802/gXKw7eMvezbFT5KJvuVd.webp,https://static.pierrefrey.com/uploads/product/packshots/09afd485-6174-4c96-9c7e-f6a4c73024e7/uGsdcgLHiN9nHNYdiwVS.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/882de925-95bc-4b95-a346-675c0cf689e0/RtkcBAyuzEiBZf9Sfo4G.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:30.655Z"}
+{"mfr_sku":"BP378001","pattern_name":"Vert-bois","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP378001-vert-bois","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 79 cm - 31,10 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"B9979PPBRAQ9"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 79 cm - 31,10 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Vert-bois","description":"Wide width printed wallpapers, Vert-bois. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:31.762Z"}
+{"mfr_sku":"FP590001","pattern_name":"Ogaki","color_name":"Origine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP590001-ogaki","list_image":"https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 82 cm - 32,28 inch | Half drop repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing"},"width":"87 cm / 34,25 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 82 cm - 32,28 inch | Half drop repeat","weight":"240 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ogaki","description":"Small width printed wallpapers - Straws and similar materials, Ogaki. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp","https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp","https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp","https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp","https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp","https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp","https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp","https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp","https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp","https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp","https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp","https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp,https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp,https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp,https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp,https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp,https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp,https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp,https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp,https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp,https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp,https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp,https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:32.370Z"}
+{"mfr_sku":"FP161001","pattern_name":"Wallpaper toile de nantes","color_name":"Bleu Ancien","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP161001-wallpaper-toile-de-nantes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  3,66 mts","Backing":"PAPER","Composition":"-","Width":"78 cm / 30,70 inch","Repeat":"V: 42 cm - 16,53 inch | Straight repeat","Weight":"315 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes."},"width":"78 cm / 30,70 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 42 cm - 16,53 inch | Straight repeat","weight":"315 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  3,66 mts","roll_length":null,"collection":"Wallpaper toile de nantes","description":"Small width printed wallpapers, Wallpaper toile de nantes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp","https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp","https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp","https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp","https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp","https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp","https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp,https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp,https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp,https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp,https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp,https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp,https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:33.254Z"}
+{"mfr_sku":"FP160002","pattern_name":"Wallpaper les paniers fleuris","color_name":"Rose Ancien","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP160002-wallpaper-les-paniers-fleuris","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 42 cm - 16,53 inch | Straight repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 42 cm - 16,53 inch | Straight repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper les paniers fleuris","description":"Small width printed wallpapers, Wallpaper les paniers fleuris. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:34.188Z"}
+{"mfr_sku":"BP202002","pattern_name":"Wallpaper peinture","color_name":"Nutmeg","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP202002-wallpaper-peinture","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"71 cm / 27,95 inch","Repeat":"V: 76 cm - 29,92 inch | Half drop repeat","Weight":"168 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"71 cm / 27,95 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 76 cm - 29,92 inch | Half drop repeat","weight":"168 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper peinture","description":"Small width printed wallpapers, Wallpaper peinture. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:34.942Z"}
+{"mfr_sku":"LP107001","pattern_name":"Pommes de pin","color_name":"Mordore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP107001-pommes-de-pin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 23 cm - 9,00 inch | V: 61 cm - 24,01 inch | Straight repeat","Weight":"140 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 23 cm - 9,00 inch | V: 61 cm - 24,01 inch | Straight repeat","weight":"140 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Pommes de pin","description":"Small width printed wallpapers, Pommes de pin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/7ccd920b-6ab0-43d9-9fde-879b8ffdffa1/anYHQftsWM4vdhP5rR6H.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/7ccd920b-6ab0-43d9-9fde-879b8ffdffa1/anYHQftsWM4vdhP5rR6H.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:35.886Z"}
+{"mfr_sku":"FP372002","pattern_name":"Ebene","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP372002-ebene","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"135 cm / 53,14 inch","Repeat":"H: 35 cm - 13,00 inch | V: 91 cm - 35,82 inch | No side match","Weight":"452 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect"},"width":"135 cm / 53,14 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 35 cm - 13,00 inch | V: 91 cm - 35,82 inch | No side match","weight":"452 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ebene","description":"Wide width printed wallpapers, Ebene. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP.webp","https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK.webp","https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI.webp","https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw.webp","https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP.webp,https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK.webp,https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI.webp,https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw.webp,https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:36.646Z"}
+{"mfr_sku":"FP017002","pattern_name":"Le touquet","color_name":"Cordage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP017002-le-touquet","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"84 cm / 33,07 inch","Repeat":"H: 84 cm - 33,00 inch | V: 84 cm - 33,07 inch | Half drop repeat","Weight":"265 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY41"},"width":"84 cm / 33,07 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 84 cm - 33,00 inch | V: 84 cm - 33,07 inch | Half drop repeat","weight":"265 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le touquet","description":"Paperbacked fabrics - Printed wallpapers, Le touquet. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:37.439Z"}
+{"mfr_sku":"LP101003","pattern_name":"Madame tallien","color_name":"Rose","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP101003-madame-tallien","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  5,45 mts","Backing":"PAPER","Composition":"-","Width":"57 cm / 22,44 inch","Repeat":"H: 57 cm - 22,00 inch | V: 120 cm - 47,24 inch | Straight repeat","Weight":"140 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"57 cm / 22,44 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 57 cm - 22,00 inch | V: 120 cm - 47,24 inch | Straight repeat","weight":"140 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  5,45 mts","roll_length":null,"collection":"Madame tallien","description":"Small width printed wallpapers, Madame tallien. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:38.332Z"}
+{"mfr_sku":"BP324001","pattern_name":"La route de la soie","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP324001-la-route-de-la-soie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"280 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La route de la soie","description":"Plains & semi plains - Paperbacked fabrics, La route de la soie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp","https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp","https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp","https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp","https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp","https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp","https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp","https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp,https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp,https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp,https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp,https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp,https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp,https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp,https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:38.979Z"}
+{"mfr_sku":"FP012001","pattern_name":"Cancale","color_name":"Encre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP012001-cancale","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"50 % Paper - 50 % Jute","Width":"88 cm / 34,64 inch","Repeat":"H: 88 cm - 34,00 inch | V: 93 cm - 36,61 inch | Straight repeat","Weight":"340 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber | Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY41"},"width":"88 cm / 34,64 inch","composition":"50 % Paper - 50 % Jute","material":"NON WOVEN","pattern_repeat":"H: 88 cm - 34,00 inch | V: 93 cm - 36,61 inch | Straight repeat","weight":"340 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cancale","description":"Straws and similar materials - Printed wallpapers, Cancale. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:39.940Z"}
+{"mfr_sku":"FP957003","pattern_name":"Lucille","color_name":"Fusain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP957003-lucille","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 163 cm - 64,17 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 163 cm - 64,17 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Lucille","description":"Wide width printed wallpapers, Lucille. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/76974ed4-a7aa-4a20-a85a-751a44112bcc/OzbMQHqFs9j3Fc2MYfuZ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/76974ed4-a7aa-4a20-a85a-751a44112bcc/OzbMQHqFs9j3Fc2MYfuZ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:40.829Z"}
+{"mfr_sku":"FP921002","pattern_name":"Rita","color_name":"Corde","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP921002-rita","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"88 % Linen - 12 % Viscose","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"88 % Linen - 12 % Viscose","material":"NON WOVEN","pattern_repeat":"Free match","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Rita","description":"Plains & semi plains - Paperbacked fabrics, Rita. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:41.585Z"}
+{"mfr_sku":"FP949001","pattern_name":"Caribou","color_name":"Fusain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP949001-caribou","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 85 cm - 33,46 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 85 cm - 33,46 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Caribou","description":"Wide width printed wallpapers, Caribou. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:42.520Z"}
+{"mfr_sku":"FP786005","pattern_name":"Arlesienne","color_name":"Grenadier","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP786005-arlesienne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Arlesienne","description":"Small width printed wallpapers, Arlesienne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","https://static.pierrefrey.com/uploads/product/packshots/ec27716e-f91a-4215-b600-85e7b4961402/Pxz49wGzCTfN9gJzQccH.webp","https://static.pierrefrey.com/uploads/product/packshots/065100da-5ea5-4f01-9af4-e6a8e1397bfb/bCdgUaNskRc73diUe722.webp","https://static.pierrefrey.com/uploads/product/packshots/fe3cff35-bc90-4537-ba7f-6a379a84b390/icokPHHV8Lvq79JJc1wo.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp,https://static.pierrefrey.com/uploads/product/packshots/ec27716e-f91a-4215-b600-85e7b4961402/Pxz49wGzCTfN9gJzQccH.webp,https://static.pierrefrey.com/uploads/product/packshots/065100da-5ea5-4f01-9af4-e6a8e1397bfb/bCdgUaNskRc73diUe722.webp,https://static.pierrefrey.com/uploads/product/packshots/fe3cff35-bc90-4537-ba7f-6a379a84b390/icokPHHV8Lvq79JJc1wo.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:43.250Z"}
+{"mfr_sku":"FP963002","pattern_name":"Oboshi","color_name":"Poudre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP963002-oboshi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 98 cm - 38,00 inch | V: 84 cm - 33,07 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 98 cm - 38,00 inch | V: 84 cm - 33,07 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Oboshi","description":"Wide width printed wallpapers - Vinyls, Oboshi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:44.138Z"}
+{"mfr_sku":"FP036002","pattern_name":"Hemera","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP036002-hemera","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"60 % Polyamide - 27 % Viscose - 10 % Polyester - 2 % Poly métal - 1 % Cotton","Width":"139 cm / 54,72 inch","Repeat":"H: 46 cm - 18,00 inch | V: 57 cm - 22,44 inch | Straight repeat","Weight":"348 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"139 cm / 54,72 inch","composition":"60 % Polyamide - 27 % Viscose - 10 % Polyester - 2 % Poly métal - 1 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 46 cm - 18,00 inch | V: 57 cm - 22,44 inch | Straight repeat","weight":"348 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Hemera","description":"Paperbacked fabrics, Hemera. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:45.050Z"}
+{"mfr_sku":"BP367001","pattern_name":"Zarand","color_name":"Henne","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP367001-zarand","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns - Panoramic wallpapers","Sales Unit":"Full panoramic  000 cm x 000 cm ( 0 lengths 105 cm x 000 cm) -   0,00 in x   0,00 in( 0 lengths  41,33 in x   0,00 in)","Backing":"NON WOVEN","Composition":"65 % Polyester - 35 % Cotton","Width":"105 cm / 41,33 inch","Repeat":"H: 210 cm - 82,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"310 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Notes":"Raised pattern","Information":"1 roll = 2 panels"},"width":"105 cm / 41,33 inch","composition":"65 % Polyester - 35 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 210 cm - 82,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"310 gr / m²","certifications":null,"sales_unit":"Full panoramic  000 cm x 000 cm ( 0 lengths 105 cm x 000 cm) -   0,00 in x   0,00 in( 0 lengths  41,33 in x   0,00 in)","roll_length":null,"collection":"Zarand","description":"Wide width printed wallpapers - Embossed patterns - Panoramic wallpapers, Zarand. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/6deffe17-125d-42a8-866e-5d23c1b6180f/gudy3XvR7w3qCeGA9byO.png"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/6deffe17-125d-42a8-866e-5d23c1b6180f/gudy3XvR7w3qCeGA9byO.png","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/6deffe17-125d-42a8-866e-5d23c1b6180f/gudy3XvR7w3qCeGA9byO.png","product_type":"wallcovering","scraped_at":"2026-07-07T20:13:46.052Z"}
+{"mfr_sku":"FP967001","pattern_name":"Elixir","color_name":"Caraibes","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP967001-elixir","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 85 cm - 33,46 inch | Half drop repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"PAPER","pattern_repeat":"H: 68 cm - 26,00 inch | V: 85 cm - 33,46 inch | Half drop repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Elixir","description":"Small width printed wallpapers - Vinyls, Elixir. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","https://static.pierrefrey.com/uploads/product/packshots/edd681e2-5395-474d-a735-23061d8f1770/3LZQkPbA1BkprxNfDDZY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp,https://static.pierrefrey.com/uploads/product/packshots/edd681e2-5395-474d-a735-23061d8f1770/3LZQkPbA1BkprxNfDDZY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:46.818Z"}
+{"mfr_sku":"FP191004","pattern_name":"Wallpaper la paix","color_name":"Dark Smoke","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP191004-wallpaper-la-paix","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 95 cm - 37,40 inch | Straight repeat","Weight":"202 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 95 cm - 37,40 inch | Straight repeat","weight":"202 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper la paix","description":"Small width printed wallpapers, Wallpaper la paix. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:47.623Z"}
+{"mfr_sku":"FP032003","pattern_name":"Niamh","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP032003-niahm","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 92 cm - 36,22 inch | Straight repeat","Weight":"320 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Hand screen printed","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY43"},"width":"134 cm / 52,75 inch","composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 92 cm - 36,22 inch | Straight repeat","weight":"320 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Niamh","description":"Wide width printed wallpapers - Straws and similar materials, Niamh. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:48.423Z"}
+{"mfr_sku":"LP110003","pattern_name":"Taraz","color_name":"Moutarde","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP110003-taraz","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 69 cm - 27,00 inch | V: 82 cm - 32,28 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 69 cm - 27,00 inch | V: 82 cm - 32,28 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Taraz","description":"Small width printed wallpapers, Taraz. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:49.330Z"}
+{"mfr_sku":"FP046002","pattern_name":"Ichika","color_name":"Terre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP046002-ichika","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 54 cm - 21,25 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY44"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 54 cm - 21,25 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ichika","description":"Wide width printed wallpapers, Ichika. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:50.180Z"}
+{"mfr_sku":"FP862003","pattern_name":"Pentagrama","color_name":"Aqua","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP862003-pentagrama","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6ffa13a8-59a8-4602-8eb6-8c400e735c78/jsiePU8ApHrk1sgMiCtQ_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 50 cm - 19,68 inch | Straight repeat","Weight":"152 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 50 cm - 19,68 inch | Straight repeat","weight":"152 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Pentagrama","description":"Wide width printed wallpapers, Pentagrama. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6ffa13a8-59a8-4602-8eb6-8c400e735c78/jsiePU8ApHrk1sgMiCtQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6ffa13a8-59a8-4602-8eb6-8c400e735c78/jsiePU8ApHrk1sgMiCtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ba742fe8-140f-41b6-b23d-5038a2e4402b/9CBHGjihD4snZUnww3zR.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6ffa13a8-59a8-4602-8eb6-8c400e735c78/jsiePU8ApHrk1sgMiCtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ba742fe8-140f-41b6-b23d-5038a2e4402b/9CBHGjihD4snZUnww3zR.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:50.881Z"}
+{"mfr_sku":"FP057002","pattern_name":"Akimasa","color_name":"Galet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP057002-akimasa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 98 cm - 38,00 inch | V: 50 cm - 19,68 inch | Straight repeat","Weight":"405 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY44"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 98 cm - 38,00 inch | V: 50 cm - 19,68 inch | Straight repeat","weight":"405 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Akimasa","description":"Wide width printed wallpapers - Vinyls, Akimasa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:51.718Z"}
+{"mfr_sku":"FP173001","pattern_name":"Wallpaper salzburg","color_name":"Snow","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP173001-wallpaper-salzburg","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 54 cm - 21,25 inch | Straight repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 54 cm - 21,25 inch | Straight repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper salzburg","description":"Small width printed wallpapers, Wallpaper salzburg. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:52.638Z"}
+{"mfr_sku":"FP417001","pattern_name":"Coupole","color_name":"Ivoire","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP417001-coupole","list_image":"https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Corks","Sales Unit":"Available per roll of  6,00 mts","Backing":"NON WOVEN","Composition":"100 % Cork","Width":"91 cm / 35,82 inch","Repeat":"Half drop repeat","Weight":"202 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0"},"width":"91 cm / 35,82 inch","composition":"100 % Cork","material":"NON WOVEN","pattern_repeat":"Half drop repeat","weight":"202 gr / m²","certifications":"EUROCLASS C-s1,d0","sales_unit":"Available per roll of  6,00 mts","roll_length":null,"collection":"Coupole","description":"Small width printed wallpapers - Corks, Coupole. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp","https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp","https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp","https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp","https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp","https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp","https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp,https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp,https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp,https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp,https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp,https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp,https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:53.313Z"}
+{"mfr_sku":"W4835001","pattern_name":"Wallpaper florilege","color_name":"Snow","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4835001-wallpaper-florilege","list_image":"https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 86 cm - 33,85 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 86 cm - 33,85 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper florilege","description":"Small width printed wallpapers, Wallpaper florilege. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:54.213Z"}
+{"mfr_sku":"LP101001","pattern_name":"Madame tallien","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP101001-madame-tallien","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  5,45 mts","Backing":"PAPER","Composition":"-","Width":"57 cm / 22,44 inch","Repeat":"H: 57 cm - 22,00 inch | V: 120 cm - 47,24 inch | Straight repeat","Weight":"140 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"57 cm / 22,44 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 57 cm - 22,00 inch | V: 120 cm - 47,24 inch | Straight repeat","weight":"140 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  5,45 mts","roll_length":null,"collection":"Madame tallien","description":"Small width printed wallpapers, Madame tallien. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:55.031Z"}
+{"mfr_sku":"BP330001","pattern_name":"La pannonie","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP330001-la-pannonie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"B9979PPBRAQ4"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"La pannonie","description":"Small width printed wallpapers, La pannonie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/fa051c85-eae2-4a81-bae2-ba7b70656b9f/IVrmw7G0ZIoDGdQugVXc.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/fa051c85-eae2-4a81-bae2-ba7b70656b9f/IVrmw7G0ZIoDGdQugVXc.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:55.807Z"}
+{"mfr_sku":"FP013002","pattern_name":"Transat","color_name":"Sunset","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP013002-transat","list_image":"https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY41"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Transat","description":"Wide width printed wallpapers, Transat. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:56.648Z"}
+{"mfr_sku":"FP846001","pattern_name":"Ciel reve","color_name":"Lin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP846001-ciel-reve","list_image":"https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 97 cm - 38,18 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 97 cm - 38,18 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ciel reve","description":"Small width printed wallpapers - Vinyls, Ciel reve. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:57.398Z"}
+{"mfr_sku":"FP052001","pattern_name":"Tottori","color_name":"Indigo","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP052001-tottori","list_image":"https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"135 cm / 53,14 inch","Weight":"385 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A"},"width":"135 cm / 53,14 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":null,"weight":"385 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tottori","description":"Wide width printed wallpapers - Paperbacked fabrics, Tottori. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:58.164Z"}
+{"mfr_sku":"FP301001","pattern_name":"Jacaranda","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP301001-jacaranda","list_image":"https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"100 % Linen","Width":"128 cm / 50,39 inch","Repeat":"H: 33 cm - 12,00 inch","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Book":"F9979PPFREY49"},"width":"128 cm / 50,39 inch","composition":"100 % Linen","material":"PAPER","pattern_repeat":"H: 33 cm - 12,00 inch","weight":"230 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Jacaranda","description":"Wide width printed wallpapers - Paperbacked fabrics, Jacaranda. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp","https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp","https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp","https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp","https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp","https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp","https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp","https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp","https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp,https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp,https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp,https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp,https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp,https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp,https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp,https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp,https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:58.948Z"}
+{"mfr_sku":"FP056001","pattern_name":"Hogara","color_name":"Indigo","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP056001-hogara","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","Weight":"405 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY44"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","weight":"405 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Hogara","description":"Vinyls - Printed wallpapers, Hogara. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","https://static.pierrefrey.com/uploads/product/packshots/89778696-b00d-40c7-8696-89624fcffe9e/jjinbLmFhvLKwdbziDFx.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp,https://static.pierrefrey.com/uploads/product/packshots/89778696-b00d-40c7-8696-89624fcffe9e/jjinbLmFhvLKwdbziDFx.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:13:59.748Z"}
+{"mfr_sku":"BP205003","pattern_name":"Wallpaper vermicule","color_name":"Old Blue","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP205003-wallpaper-vermicule","list_image":"https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,10 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 12 cm - 4,00 inch | V: 9 cm - 3,54 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Soaking time before hanging: maximum 2 minutes."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 12 cm - 4,00 inch | V: 9 cm - 3,54 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,10 mts","roll_length":null,"collection":"Wallpaper vermicule","description":"Small width printed wallpapers, Wallpaper vermicule. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/83dc8673-b844-458e-aae1-a97d7380f2b6/V0FKA2pCabcXygvXlLgi.webp","https://static.pierrefrey.com/uploads/product/packshots/b3b69585-8ed3-4b55-b785-327ac133c7e3/96pkrCnNU76p9EFqdbRh.webp","https://static.pierrefrey.com/uploads/product/packshots/2929a256-661d-43a1-8a87-f318aac0896b/DZa1lUNJ8hC81Txs97S6.webp","https://static.pierrefrey.com/uploads/product/packshots/dc8e8368-4575-4060-8e6e-cd0b22b7cd40/keaPWjDUvwHa79LK3yxa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/83dc8673-b844-458e-aae1-a97d7380f2b6/V0FKA2pCabcXygvXlLgi.webp,https://static.pierrefrey.com/uploads/product/packshots/b3b69585-8ed3-4b55-b785-327ac133c7e3/96pkrCnNU76p9EFqdbRh.webp,https://static.pierrefrey.com/uploads/product/packshots/2929a256-661d-43a1-8a87-f318aac0896b/DZa1lUNJ8hC81Txs97S6.webp,https://static.pierrefrey.com/uploads/product/packshots/dc8e8368-4575-4060-8e6e-cd0b22b7cd40/keaPWjDUvwHa79LK3yxa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:00.708Z"}
+{"mfr_sku":"FP568004","pattern_name":"Fontaine et animaux barbouillage","color_name":"Rouge D'Orient","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP568004-fontaine-et-animaux-barbouillage","list_image":"https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Christian Astuguevieille","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 176 cm - 69,29 inch | Offset repeat 1/3","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"140 cm / 55,11 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 176 cm - 69,29 inch | Offset repeat 1/3","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fontaine et animaux barbouillage","description":"Wide width printed wallpapers, Fontaine et animaux barbouillage. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp","https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp","https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp","https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp","https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp","https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp","https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp","https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp","https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp","https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp","https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp","https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp,https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp,https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp,https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp,https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp,https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp,https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp,https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp,https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp,https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp,https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp,https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:01.399Z"}
+{"mfr_sku":"FP633001","pattern_name":"Kadjar","color_name":"Ecru","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP633001-kadjar","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7372e397-a80f-4db6-a92e-6a9214748e02/sMpt40w6dZWtg4gqBiFG_251x335_webp.webp","specs":{"Type":"End-on-end threads - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"81 cm / 31,88 inch","Repeat":"H: 81 cm - 31,00 inch | V: 32 cm - 12,59 inch | Straight repeat","Weight":"220 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect"},"width":"81 cm / 31,88 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 81 cm - 31,00 inch | V: 32 cm - 12,59 inch | Straight repeat","weight":"220 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Kadjar","description":"End-on-end threads - Embossed patterns, Kadjar. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7372e397-a80f-4db6-a92e-6a9214748e02/sMpt40w6dZWtg4gqBiFG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7372e397-a80f-4db6-a92e-6a9214748e02/sMpt40w6dZWtg4gqBiFG.webp","https://static.pierrefrey.com/uploads/product/packshots/923e805b-e9b9-490b-8c68-29b5509fa518/jVjKSUjKlB9HdCMdss6S.webp","https://static.pierrefrey.com/uploads/product/packshots/661d30fe-f671-4498-8597-0902be59a25b/k9NEsc8aNQf97vckadNr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e987e23-20b0-476a-b8ff-9421d4f245f5/hdD2cK4R1LCAQX0Ez8bP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7372e397-a80f-4db6-a92e-6a9214748e02/sMpt40w6dZWtg4gqBiFG.webp,https://static.pierrefrey.com/uploads/product/packshots/923e805b-e9b9-490b-8c68-29b5509fa518/jVjKSUjKlB9HdCMdss6S.webp,https://static.pierrefrey.com/uploads/product/packshots/661d30fe-f671-4498-8597-0902be59a25b/k9NEsc8aNQf97vckadNr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e987e23-20b0-476a-b8ff-9421d4f245f5/hdD2cK4R1LCAQX0Ez8bP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:02.324Z"}
+{"mfr_sku":"LP108005","pattern_name":"Plumettes","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP108005-plumettes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,10 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 22 cm - 8,00 inch | V: 16 cm - 6,29 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Soaking time before hanging: maximum 2 minutes.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 22 cm - 8,00 inch | V: 16 cm - 6,29 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,10 mts","roll_length":null,"collection":"Plumettes","description":"Small width printed wallpapers, Plumettes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/e7a711a7-a131-4f19-883b-92d4e3f32211/3wIYH3A0eoIi2ZS1cGMD.webp","https://static.pierrefrey.com/uploads/product/packshots/5b165095-ee1f-4680-a8bd-7c8b35ac81a4/y8FDTMAyyPm72A3nBx9R.webp","https://static.pierrefrey.com/uploads/product/packshots/69cd0d72-253c-4f75-85b8-e96f860e885d/p6zYvoHDyn9UX8A7BXsJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8346139f-52a5-4f65-832d-df894dde42cf/7U9DSjPeQxYW2afTiZtd.webp","https://static.pierrefrey.com/uploads/product/packshots/f29f25c3-55c9-4bf5-939a-a7268dd85aec/KSUsGEwp1aUrOQhRWhNP.webp","https://static.pierrefrey.com/uploads/product/packshots/218bf3fa-cdba-4af3-b0fd-a77563aab061/zTQRh9zPzW16Tvu9Ll5h.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/e7a711a7-a131-4f19-883b-92d4e3f32211/3wIYH3A0eoIi2ZS1cGMD.webp,https://static.pierrefrey.com/uploads/product/packshots/5b165095-ee1f-4680-a8bd-7c8b35ac81a4/y8FDTMAyyPm72A3nBx9R.webp,https://static.pierrefrey.com/uploads/product/packshots/69cd0d72-253c-4f75-85b8-e96f860e885d/p6zYvoHDyn9UX8A7BXsJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8346139f-52a5-4f65-832d-df894dde42cf/7U9DSjPeQxYW2afTiZtd.webp,https://static.pierrefrey.com/uploads/product/packshots/f29f25c3-55c9-4bf5-939a-a7268dd85aec/KSUsGEwp1aUrOQhRWhNP.webp,https://static.pierrefrey.com/uploads/product/packshots/218bf3fa-cdba-4af3-b0fd-a77563aab061/zTQRh9zPzW16Tvu9Ll5h.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:03.915Z"}
+{"mfr_sku":"FP939002","pattern_name":"Owen","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP939002-owen","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Jute","Width":"120 cm / 47,24 inch","Repeat":"Free match","Weight":"424 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"CFA recommended | Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"120 cm / 47,24 inch","composition":"100 % Jute","material":"NON WOVEN","pattern_repeat":"Free match","weight":"424 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Owen","description":"Plains & semi plains - Paperbacked fabrics, Owen. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:05.276Z"}
+{"mfr_sku":"FP770003","pattern_name":"Les singes savants","color_name":"Rouge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP770003-les-singes-savants","list_image":"https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Artist":"Dessin Harrison Howard","Collaboration":"Maison Caspari","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"97 cm / 38,18 inch","Repeat":"H: 97 cm - 38,00 inch | V: 135 cm - 53,14 inch | Half drop repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness"},"width":"97 cm / 38,18 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 97 cm - 38,00 inch | V: 135 cm - 53,14 inch | Half drop repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les singes savants","description":"Wide width printed wallpapers - Vinyls, Les singes savants. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp","https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp","https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp","https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp","https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp","https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp","https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp","https://static.pierrefrey.com/uploads/product/packshots/290613ee-c487-42cd-a779-f43e5385d2fa/Veb3mjD7YLOQB90VzC0r.webp","https://static.pierrefrey.com/uploads/product/packshots/bff841c5-6af3-47eb-b7a2-477d14250ee1/4rwLR1Hw3Xrnwf8k0ZXa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp,https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp,https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp,https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp,https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp,https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp,https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp,https://static.pierrefrey.com/uploads/product/packshots/290613ee-c487-42cd-a779-f43e5385d2fa/Veb3mjD7YLOQB90VzC0r.webp,https://static.pierrefrey.com/uploads/product/packshots/bff841c5-6af3-47eb-b7a2-477d14250ee1/4rwLR1Hw3Xrnwf8k0ZXa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:05.954Z"}
+{"mfr_sku":"BP362001","pattern_name":"Ursuline","color_name":"Rouge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP362001-ursuline","list_image":"https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 59 cm - 23,22 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 59 cm - 23,22 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Ursuline","description":"Small width printed wallpapers, Ursuline. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:07.164Z"}
+{"mfr_sku":"FP651001","pattern_name":"Portofino","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP651001-portofino","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"60 % Viscose - 31 % Cotton - 9 % Linen","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"685 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect"},"width":"130 cm / 51,18 inch","composition":"60 % Viscose - 31 % Cotton - 9 % Linen","material":"NON WOVEN","pattern_repeat":"Free match","weight":"685 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Portofino","description":"Plains & semi plains - Paperbacked fabrics, Portofino. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:07.994Z"}
+{"mfr_sku":"BP201001","pattern_name":"Wallpaper petit parc","color_name":"Green/Cream","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP201001-wallpaper-petit-parc","list_image":"https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"71 cm / 27,95 inch","Repeat":"V: 76 cm - 29,92 inch | Half drop repeat","Weight":"224 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"71 cm / 27,95 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 76 cm - 29,92 inch | Half drop repeat","weight":"224 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper petit parc","description":"Small width printed wallpapers, Wallpaper petit parc. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/da1091fa-5203-478a-813d-b2e0a0e9bcc4/wqfsdwp0UssJADh6p2QK.webp","https://static.pierrefrey.com/uploads/product/packshots/ce334241-728a-44c4-818d-170b3b333739/6EVBgXCBUayfYAsaouqO.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/da1091fa-5203-478a-813d-b2e0a0e9bcc4/wqfsdwp0UssJADh6p2QK.webp,https://static.pierrefrey.com/uploads/product/packshots/ce334241-728a-44c4-818d-170b3b333739/6EVBgXCBUayfYAsaouqO.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:08.890Z"}
+{"mfr_sku":"FP974001","pattern_name":"Salvador","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP974001-salvador","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","Weight":"300 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable"},"width":"87 cm / 34,25 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","weight":"300 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Salvador","description":"Small width printed wallpapers - Straws and similar materials, Salvador. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:09.613Z"}
+{"mfr_sku":"FP919003","pattern_name":"Liam","color_name":"Galet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP919003-liam","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"83 % Linen - 17 % Polyamide","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"290 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"140 cm / 55,11 inch","composition":"83 % Linen - 17 % Polyamide","material":"NON WOVEN","pattern_repeat":"Free match","weight":"290 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Liam","description":"Plains & semi plains - Paperbacked fabrics, Liam. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:10.410Z"}
+{"mfr_sku":"FP975002","pattern_name":"Tikehau","color_name":"Aqua","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP975002-tikehau","list_image":"https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 86 cm - 33,85 inch | Straight repeat","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 86 cm - 33,85 inch | Straight repeat","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tikehau","description":"Small width printed wallpapers - Straws and similar materials, Tikehau. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:11.024Z"}
+{"mfr_sku":"FP585001","pattern_name":"Broceliande","color_name":"Foret","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP585001-broceliande","list_image":"https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 97 cm - 38,18 inch | Half drop repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 97 cm - 38,18 inch | Half drop repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Broceliande","description":"Wide width printed wallpapers, Broceliande. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp","https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp","https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp","https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp","https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp","https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp","https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp","https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp","https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp","https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp","https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp","https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp","https://static.pierrefrey.com/uploads/product/packshots/edac1e3d-3982-4175-97e1-46e309970d86/akKIlpFDKCfEFzr90t7v.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp,https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp,https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp,https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp,https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp,https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp,https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp,https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp,https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp,https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp,https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp,https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp,https://static.pierrefrey.com/uploads/product/packshots/edac1e3d-3982-4175-97e1-46e309970d86/akKIlpFDKCfEFzr90t7v.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:11.739Z"}
+{"mfr_sku":"FP378001","pattern_name":"Ursa","color_name":"Olive","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP378001-ursa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI_335x251_webp.webp","specs":{"Type":"Straws and similar materials","Sales Unit":"Available per roll of  6,00 mts","Backing":"PAPER","Composition":"100 % Paper","Width":"91 cm / 35,82 inch","Repeat":"Free match","Weight":"324 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0","Information":"Panel effect"},"width":"91 cm / 35,82 inch","composition":"100 % Paper","material":"PAPER","pattern_repeat":"Free match","weight":"324 gr / m²","certifications":"EUROCLASS C-s1,d0","sales_unit":"Available per roll of  6,00 mts","roll_length":null,"collection":"Ursa","description":"Straws and similar materials, Ursa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI.webp","https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK.webp","https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw.webp","https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI.webp,https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK.webp,https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw.webp,https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:12.403Z"}
+{"mfr_sku":"BP324008","pattern_name":"La route de la soie","color_name":"Rouge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP324008-la-route-de-la-soie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"280 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La route de la soie","description":"Plains & semi plains - Paperbacked fabrics, La route de la soie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp","https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp","https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp","https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp","https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp","https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp","https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp","https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp,https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp,https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp,https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp,https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp,https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp,https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp,https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:13.094Z"}
+{"mfr_sku":"W4982006","pattern_name":"Wallpaper oscar","color_name":"Black","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4982006-wallpaper-oscar","list_image":"https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 75 cm - 29,52 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 75 cm - 29,52 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper oscar","description":"Small width printed wallpapers, Wallpaper oscar. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:13.819Z"}
+{"mfr_sku":"FP641001","pattern_name":"Suzie","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP641001-suzie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"240 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Suzie","description":"Plains & semi plains - Paperbacked fabrics, Suzie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:14.650Z"}
+{"mfr_sku":"FP771002","pattern_name":"Poseidon","color_name":"Peche","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP771002-poseidon","list_image":"https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Artist":"Irène Rohr","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Poseidon","description":"Small width printed wallpapers, Poseidon. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","https://static.pierrefrey.com/uploads/product/packshots/3528fd8c-0a1b-4c5d-87b4-2ea76c21c9a3/Wy5ZAqReBSh0zL3k8Oor.webp","https://static.pierrefrey.com/uploads/product/packshots/23b1a953-55ac-4cd2-8655-1b26c9957461/kKR5EtoNToVbHh8j4znW.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp,https://static.pierrefrey.com/uploads/product/packshots/3528fd8c-0a1b-4c5d-87b4-2ea76c21c9a3/Wy5ZAqReBSh0zL3k8Oor.webp,https://static.pierrefrey.com/uploads/product/packshots/23b1a953-55ac-4cd2-8655-1b26c9957461/kKR5EtoNToVbHh8j4znW.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:15.448Z"}
+{"mfr_sku":"FP790001","pattern_name":"Patio","color_name":"Roussillon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP790001-patio","list_image":"https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 34 cm - 13,00 inch | V: 67 cm - 26,37 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 67 cm - 26,37 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Patio","description":"Wide width printed wallpapers, Patio. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:16.299Z"}
+{"mfr_sku":"FP777002","pattern_name":"Alpilles","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP777002-alpilles","list_image":"https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 3 cm - 1,00 inch | V: 53 cm - 20,86 inch","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 3 cm - 1,00 inch | V: 53 cm - 20,86 inch","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Alpilles","description":"Small width printed wallpapers, Alpilles. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:17.029Z"}
+{"mfr_sku":"LP111002","pattern_name":"Les lions","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP111002-les-lions","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"64 cm / 25,19 inch","Repeat":"H: 64 cm - 25,00 inch | V: 110 cm - 43,30 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"64 cm / 25,19 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 64 cm - 25,00 inch | V: 110 cm - 43,30 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Les lions","description":"Small width printed wallpapers, Les lions. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7ca31d75-cab7-45fb-8832-58a94f9af14e/uwNAgSh41Qy1PmKM3C2Y.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7ca31d75-cab7-45fb-8832-58a94f9af14e/uwNAgSh41Qy1PmKM3C2Y.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:17.958Z"}
+{"mfr_sku":"FP790002","pattern_name":"Patio","color_name":"Aqua","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP790002-patio","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 34 cm - 13,00 inch | V: 67 cm - 26,37 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 67 cm - 26,37 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Patio","description":"Wide width printed wallpapers, Patio. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:18.795Z"}
+{"mfr_sku":"BP360001","pattern_name":"Tendresse","color_name":"Aurelie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP360001-tendresse","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg_335x251_webp.webp","specs":{"Type":"Embossed patterns - Paperbacked fabrics - Embroideries","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"69 % Linen - 19 % Viscose - 12 % Polyester","Width":"128 cm / 50,39 inch","Repeat":"H: 128 cm - 50,00 inch | V: 39 cm - 15,35 inch | Offset repeat 1/3","Weight":"420 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"B9979PPBRAQ9"},"width":"128 cm / 50,39 inch","composition":"69 % Linen - 19 % Viscose - 12 % Polyester","material":"PAPER","pattern_repeat":"H: 128 cm - 50,00 inch | V: 39 cm - 15,35 inch | Offset repeat 1/3","weight":"420 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tendresse","description":"Embossed patterns - Paperbacked fabrics - Embroideries, Tendresse. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:19.695Z"}
+{"mfr_sku":"BP349002","pattern_name":"Parvati","color_name":"Menthe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP349002-parvati","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm_251x335_webp.webp","specs":{"Type":"Embossed patterns - Paperbacked fabrics - Embroideries","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"63 % Linen - 26 % Viscose - 11 % Polyester","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 117 cm - 46,06 inch | Straight repeat","Weight":"455 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"B9979PPBRAQ9"},"width":"129 cm / 50,78 inch","composition":"63 % Linen - 26 % Viscose - 11 % Polyester","material":"PAPER","pattern_repeat":"H: 129 cm - 50,00 inch | V: 117 cm - 46,06 inch | Straight repeat","weight":"455 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Parvati","description":"Embossed patterns - Paperbacked fabrics - Embroideries, Parvati. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/54754d3d-e375-4740-9f49-6596df48d115/94SQpnZpYdfnDIDjd3Dc.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/54754d3d-e375-4740-9f49-6596df48d115/94SQpnZpYdfnDIDjd3Dc.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:20.647Z"}
+{"mfr_sku":"FP512001","pattern_name":"Keystone","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP512001-keystone","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"84 % Polyester - 16 % Cotton","Width":"140 cm / 55,11 inch","Repeat":"H: 36 cm - 14,00 inch | V: 76 cm - 29,92 inch | No side match","Weight":"485 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect","Book":"F9979PPFREY14"},"width":"140 cm / 55,11 inch","composition":"84 % Polyester - 16 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 36 cm - 14,00 inch | V: 76 cm - 29,92 inch | No side match","weight":"485 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Keystone","description":"Paperbacked fabrics, Keystone. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd.webp","https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb.webp","https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ.webp","https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp.webp","https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd.webp,https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb.webp,https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ.webp,https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp.webp,https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:21.323Z"}
+{"mfr_sku":"BP324003","pattern_name":"La route de la soie","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP324003-la-route-de-la-soie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"280 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La route de la soie","description":"Plains & semi plains - Paperbacked fabrics, La route de la soie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp","https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp","https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp","https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp","https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp","https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp","https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp","https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp,https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp,https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp,https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp,https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp,https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp,https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp,https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:21.979Z"}
+{"mfr_sku":"BP334005","pattern_name":"Shiva","color_name":"Gris","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334005-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:22.875Z"}
+{"mfr_sku":"BP203005","pattern_name":"Wallpaper bengali","color_name":"Ochre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP203005-wallpaper-bengali","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  5,45 mts","Backing":"PAPER","Composition":"-","Width":"60 cm / 23,62 inch","Repeat":"V: 69 cm - 27,16 inch | Straight repeat","Weight":"204 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"60 cm / 23,62 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 69 cm - 27,16 inch | Straight repeat","weight":"204 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  5,45 mts","roll_length":null,"collection":"Wallpaper bengali","description":"Small width printed wallpapers, Wallpaper bengali. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/2b233c4d-1300-45ee-8566-08d70e3cb7a3/ocUOmplZEa0KisuQu4lP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/2b233c4d-1300-45ee-8566-08d70e3cb7a3/ocUOmplZEa0KisuQu4lP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:23.530Z"}
+{"mfr_sku":"FP565003","pattern_name":"Tampa","color_name":"Caraibes","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP565003-tampa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"460 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tampa","description":"Small width printed wallpapers - Vinyls, Tampa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp","https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp","https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp","https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp","https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp","https://static.pierrefrey.com/uploads/product/packshots/df9f729e-3459-481e-9ff4-33eb57a2bbaf/TtWUkFZPTdKTpWIvHoQY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp,https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp,https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp,https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp,https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp,https://static.pierrefrey.com/uploads/product/packshots/df9f729e-3459-481e-9ff4-33eb57a2bbaf/TtWUkFZPTdKTpWIvHoQY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:24.269Z"}
+{"mfr_sku":"FP399001","pattern_name":"Cuilko","color_name":"Jade","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP399001-cuilko","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7e8abc59-aaee-460e-bfc7-2246f4ad7672/3OfiJhUX0OGYpc3c9I31_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"140 cm / 55,11 inch","Repeat":"H: 140 cm - 55,00 inch | V: 103 cm - 40,55 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"140 cm / 55,11 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 103 cm - 40,55 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cuilko","description":"Wide width printed wallpapers, Cuilko. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7e8abc59-aaee-460e-bfc7-2246f4ad7672/3OfiJhUX0OGYpc3c9I31.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7e8abc59-aaee-460e-bfc7-2246f4ad7672/3OfiJhUX0OGYpc3c9I31.webp","https://static.pierrefrey.com/uploads/product/packshots/319c7d51-4ecf-4ee2-b4bd-51b0b403c17f/5NrXANIFfOmXN1GjBq0Y.webp","https://static.pierrefrey.com/uploads/product/packshots/de1705e3-02e4-435e-a649-10ea62c3270a/ISPjJWz6LkZLv1mDW1cm.webp","https://static.pierrefrey.com/uploads/product/packshots/15ea38a8-541f-4e79-a11d-2b9dc90e3e8f/to8KmLhihnHaaGTPo4RX.webp","https://static.pierrefrey.com/uploads/product/packshots/4d2a9406-5b1a-4c02-80d7-6bc8e377adb1/IBAJiIK8SPLItTgX9zk3.webp","https://static.pierrefrey.com/uploads/product/packshots/dc4b924f-72b8-4ba6-a7d3-914ce31ca0c6/YoDEIdvzyEjje8DxE5qA.webp","https://static.pierrefrey.com/uploads/product/packshots/bb84234a-7586-454a-a8de-57bf737e1f7a/Ny0zL1rl2iLcS8jlp5h5.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7e8abc59-aaee-460e-bfc7-2246f4ad7672/3OfiJhUX0OGYpc3c9I31.webp,https://static.pierrefrey.com/uploads/product/packshots/319c7d51-4ecf-4ee2-b4bd-51b0b403c17f/5NrXANIFfOmXN1GjBq0Y.webp,https://static.pierrefrey.com/uploads/product/packshots/de1705e3-02e4-435e-a649-10ea62c3270a/ISPjJWz6LkZLv1mDW1cm.webp,https://static.pierrefrey.com/uploads/product/packshots/15ea38a8-541f-4e79-a11d-2b9dc90e3e8f/to8KmLhihnHaaGTPo4RX.webp,https://static.pierrefrey.com/uploads/product/packshots/4d2a9406-5b1a-4c02-80d7-6bc8e377adb1/IBAJiIK8SPLItTgX9zk3.webp,https://static.pierrefrey.com/uploads/product/packshots/dc4b924f-72b8-4ba6-a7d3-914ce31ca0c6/YoDEIdvzyEjje8DxE5qA.webp,https://static.pierrefrey.com/uploads/product/packshots/bb84234a-7586-454a-a8de-57bf737e1f7a/Ny0zL1rl2iLcS8jlp5h5.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:24.936Z"}
+{"mfr_sku":"BP202001","pattern_name":"Wallpaper peinture","color_name":"Cream","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP202001-wallpaper-peinture","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"71 cm / 27,95 inch","Repeat":"V: 76 cm - 29,92 inch | Half drop repeat","Weight":"168 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"71 cm / 27,95 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 76 cm - 29,92 inch | Half drop repeat","weight":"168 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper peinture","description":"Small width printed wallpapers, Wallpaper peinture. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:25.591Z"}
+{"mfr_sku":"FP977002","pattern_name":"Grenadier","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP977002-grenadier","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 136 cm - 53,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 136 cm - 53,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Grenadier","description":"Wide width printed wallpapers, Grenadier. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:26.369Z"}
+{"mfr_sku":"FP195004","pattern_name":"Coutances","color_name":"Primerose Yellow","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP195004-coutances","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 71 cm - 27,95 inch | Half drop repeat","Weight":"202 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 71 cm - 27,95 inch | Half drop repeat","weight":"202 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Coutances","description":"Small width printed wallpapers, Coutances. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:27.158Z"}
+{"mfr_sku":"BP356001","pattern_name":"Villandry","color_name":"Nougat","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP356001-villandry","list_image":"https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"H: 22 cm - 8,00 inch | V: 41 cm - 16,14 inch | Straight repeat","Weight":"218 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ9"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 22 cm - 8,00 inch | V: 41 cm - 16,14 inch | Straight repeat","weight":"218 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Villandry","description":"Wide width printed wallpapers - Paperbacked fabrics, Villandry. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:28.151Z"}
+{"mfr_sku":"FP956001","pattern_name":"Gabrielle","color_name":"Noir","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP956001-gabrielle","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 160 cm - 62,99 inch | Half drop repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 160 cm - 62,99 inch | Half drop repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Gabrielle","description":"Wide width printed wallpapers, Gabrielle. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:28.931Z"}
+{"mfr_sku":"FP918001","pattern_name":"Jim","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP918001-jim","list_image":"https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"57 % Linen - 21 % Acrylic - 12 % Polyamide - 10 % Polyester","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"365 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"140 cm / 55,11 inch","composition":"57 % Linen - 21 % Acrylic - 12 % Polyamide - 10 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"365 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Jim","description":"Plains & semi plains - Paperbacked fabrics, Jim. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:29.797Z"}
+{"mfr_sku":"FP835001","pattern_name":"Bestiaire enchante","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP835001-bestiaire-enchante","list_image":"https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"140 cm / 55,11 inch","Repeat":"H: 70 cm - 27,00 inch | V: 70 cm - 27,55 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY28"},"width":"140 cm / 55,11 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 70 cm - 27,55 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bestiaire enchante","description":"Wide width printed wallpapers, Bestiaire enchante. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp","https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp","https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp","https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp","https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp","https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp","https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp","https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp","https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp","https://static.pierrefrey.com/uploads/product/packshots/4f5dacdb-622b-454e-abb0-22efa63e8a49/7uKjDZq0GzoiC59ntrR1.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp,https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp,https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp,https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp,https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp,https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp,https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp,https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp,https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp,https://static.pierrefrey.com/uploads/product/packshots/4f5dacdb-622b-454e-abb0-22efa63e8a49/7uKjDZq0GzoiC59ntrR1.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:30.456Z"}
+{"mfr_sku":"W4697004","pattern_name":"Wallpaper tarantelle","color_name":"Platinum Blue","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4697004-wallpaper-tarantelle","list_image":"https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 68 cm - 26,77 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 68 cm - 26,77 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper tarantelle","description":"Small width printed wallpapers, Wallpaper tarantelle. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:31.259Z"}
+{"mfr_sku":"FP777003","pattern_name":"Alpilles","color_name":"Ocre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP777003-alpilles","list_image":"https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 3 cm - 1,00 inch | V: 53 cm - 20,86 inch","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"F9979PPFREY49"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 3 cm - 1,00 inch | V: 53 cm - 20,86 inch","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Alpilles","description":"Small width printed wallpapers, Alpilles. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:32.134Z"}
+{"mfr_sku":"FP473002","pattern_name":"Yangzi","color_name":"OcéAn","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP473002-yangzi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"50 % Sisa - 50 % Polyester","Width":"87 cm / 34,25 inch","Repeat":"H: 44 cm - 17,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"297 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness"},"width":"87 cm / 34,25 inch","composition":"50 % Sisa - 50 % Polyester","material":"PAPER","pattern_repeat":"H: 44 cm - 17,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"297 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Yangzi","description":"Small width printed wallpapers - Straws and similar materials, Yangzi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp","https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp","https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp","https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp","https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp,https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp,https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp,https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp,https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:32.833Z"}
+{"mfr_sku":"LP111001","pattern_name":"Les lions","color_name":"Pivoine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP111001-les-lions","list_image":"https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"64 cm / 25,19 inch","Repeat":"H: 64 cm - 25,00 inch | V: 110 cm - 43,30 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"64 cm / 25,19 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 64 cm - 25,00 inch | V: 110 cm - 43,30 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Les lions","description":"Small width printed wallpapers, Les lions. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7ca31d75-cab7-45fb-8832-58a94f9af14e/uwNAgSh41Qy1PmKM3C2Y.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7ca31d75-cab7-45fb-8832-58a94f9af14e/uwNAgSh41Qy1PmKM3C2Y.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:33.650Z"}
+{"mfr_sku":"FP194001","pattern_name":"Beauregard","color_name":"Wheat","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP194001-beauregard","list_image":"https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 91 cm - 35,82 inch | Half drop repeat","Weight":"245 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 91 cm - 35,82 inch | Half drop repeat","weight":"245 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Beauregard","description":"Small width printed wallpapers, Beauregard. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:34.496Z"}
+{"mfr_sku":"FP432001","pattern_name":"Marabout","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP432001-marabout","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 95 cm - 37,40 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY9"},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 95 cm - 37,40 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Marabout","description":"Wide width printed wallpapers, Marabout. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp","https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp","https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp","https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp","https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp","https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp","https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp","https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp","https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp","https://static.pierrefrey.com/uploads/product/packshots/b4e07f7a-5aee-45ac-8015-20b4691a9651/ma1URLUxEmPhbMXXGhsQ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp,https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp,https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp,https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp,https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp,https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp,https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp,https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp,https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp,https://static.pierrefrey.com/uploads/product/packshots/b4e07f7a-5aee-45ac-8015-20b4691a9651/ma1URLUxEmPhbMXXGhsQ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:35.251Z"}
+{"mfr_sku":"FP881001","pattern_name":"Arlequinade","color_name":"Arlequin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP881001-arlequinade","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 134 cm - 52,75 inch | Half drop repeat","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Extra washable","Book":"F9979PPFREY33"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 134 cm - 52,75 inch | Half drop repeat","weight":"460 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Arlequinade","description":"Small width printed wallpapers - Vinyls, Arlequinade. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp,https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:36.068Z"}
+{"mfr_sku":"FP793011","pattern_name":"Nimes","color_name":"Tuile","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP793011-nimes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"Free match","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY27"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"205 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nimes","description":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics, Nimes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp","https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp","https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp","https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp","https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp","https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp","https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp","https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp","https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp,https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp,https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp,https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp,https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp,https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp,https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp,https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp,https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:36.957Z"}
+{"mfr_sku":"FP069001","pattern_name":"Ceylan","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP069001-ceylan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 48 cm - 18,89 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 48 cm - 18,89 inch | Half drop repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Ceylan","description":"Small width printed wallpapers - Printed wallpapers, Ceylan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:37.801Z"}
+{"mfr_sku":"BP330002","pattern_name":"La pannonie","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP330002-la-pannonie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"B9979PPBRAQ4"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"La pannonie","description":"Small width printed wallpapers, La pannonie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/fa051c85-eae2-4a81-bae2-ba7b70656b9f/IVrmw7G0ZIoDGdQugVXc.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/fa051c85-eae2-4a81-bae2-ba7b70656b9f/IVrmw7G0ZIoDGdQugVXc.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:38.589Z"}
+{"mfr_sku":"FP192003","pattern_name":"Alexandrie","color_name":"Blue Mist","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP192003-alexandrie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 121 cm - 47,63 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 121 cm - 47,63 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Alexandrie","description":"Small width printed wallpapers, Alexandrie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/54a9e038-c0b3-4484-8b56-7a6322303922/4BbopEcO3K7JxCfLrce3.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/54a9e038-c0b3-4484-8b56-7a6322303922/4BbopEcO3K7JxCfLrce3.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:39.429Z"}
+{"mfr_sku":"BP353003","pattern_name":"Therese","color_name":"Jardin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP353003-therese","list_image":"https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"70 % Cotton - 30 % Polyester","Width":"140 cm / 55,11 inch","Repeat":"H: 28 cm - 11,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"330 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"B9979PPBRAQ9"},"width":"140 cm / 55,11 inch","composition":"70 % Cotton - 30 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 28 cm - 11,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"330 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Therese","description":"Wide width printed wallpapers - Paperbacked fabrics, Therese. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:40.467Z"}
+{"mfr_sku":"BP334008","pattern_name":"Shiva","color_name":"Emeraude","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334008-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:41.222Z"}
+{"mfr_sku":"BP354002","pattern_name":"Les lilas","color_name":"Mauve","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP354002-les-lilas","list_image":"https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"134 cm / 52,75 inch","Repeat":"H: 90 cm - 35,00 inch | V: 43 cm - 16,92 inch | Half drop repeat","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"B9979PPBRAQ9"},"width":"134 cm / 52,75 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 43 cm - 16,92 inch | Half drop repeat","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les lilas","description":"Wide width printed wallpapers - Paperbacked fabrics, Les lilas. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/60147fb5-c257-48fd-af49-0da2f2daa526/wYsolUCXZmGR9W4X1qsp.webp","https://static.pierrefrey.com/uploads/product/packshots/c75d405d-2b0a-45c6-b12f-8338cd684c89/wTG3my3U0De9M9luNQ44.webp","https://static.pierrefrey.com/uploads/product/packshots/85b52622-95ae-4fb7-b535-9bba049af4b9/5c0Pd5niHSAMI4YjXPsq.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/60147fb5-c257-48fd-af49-0da2f2daa526/wYsolUCXZmGR9W4X1qsp.webp,https://static.pierrefrey.com/uploads/product/packshots/c75d405d-2b0a-45c6-b12f-8338cd684c89/wTG3my3U0De9M9luNQ44.webp,https://static.pierrefrey.com/uploads/product/packshots/85b52622-95ae-4fb7-b535-9bba049af4b9/5c0Pd5niHSAMI4YjXPsq.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:42.207Z"}
+{"mfr_sku":"FP867002","pattern_name":"Matriochka","color_name":"Gypsy","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP867002-matriochka","list_image":"https://static.pierrefrey.com/uploads/product/packshots/86368086-7fe9-4b00-8953-c7a267cca512/nhIDbrQEWOvlsVYREu11_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY33"},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Matriochka","description":"Wide width printed wallpapers, Matriochka. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/86368086-7fe9-4b00-8953-c7a267cca512/nhIDbrQEWOvlsVYREu11.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/86368086-7fe9-4b00-8953-c7a267cca512/nhIDbrQEWOvlsVYREu11.webp","https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/86368086-7fe9-4b00-8953-c7a267cca512/nhIDbrQEWOvlsVYREu11.webp,https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp,https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:42.952Z"}
+{"mfr_sku":"LP108006","pattern_name":"Plumettes","color_name":"Rouge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP108006-plumettes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,10 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 22 cm - 8,00 inch | V: 16 cm - 6,29 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Soaking time before hanging: maximum 2 minutes.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 22 cm - 8,00 inch | V: 16 cm - 6,29 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,10 mts","roll_length":null,"collection":"Plumettes","description":"Small width printed wallpapers, Plumettes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/e7a711a7-a131-4f19-883b-92d4e3f32211/3wIYH3A0eoIi2ZS1cGMD.webp","https://static.pierrefrey.com/uploads/product/packshots/5b165095-ee1f-4680-a8bd-7c8b35ac81a4/y8FDTMAyyPm72A3nBx9R.webp","https://static.pierrefrey.com/uploads/product/packshots/69cd0d72-253c-4f75-85b8-e96f860e885d/p6zYvoHDyn9UX8A7BXsJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8346139f-52a5-4f65-832d-df894dde42cf/7U9DSjPeQxYW2afTiZtd.webp","https://static.pierrefrey.com/uploads/product/packshots/f29f25c3-55c9-4bf5-939a-a7268dd85aec/KSUsGEwp1aUrOQhRWhNP.webp","https://static.pierrefrey.com/uploads/product/packshots/218bf3fa-cdba-4af3-b0fd-a77563aab061/zTQRh9zPzW16Tvu9Ll5h.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/e7a711a7-a131-4f19-883b-92d4e3f32211/3wIYH3A0eoIi2ZS1cGMD.webp,https://static.pierrefrey.com/uploads/product/packshots/5b165095-ee1f-4680-a8bd-7c8b35ac81a4/y8FDTMAyyPm72A3nBx9R.webp,https://static.pierrefrey.com/uploads/product/packshots/69cd0d72-253c-4f75-85b8-e96f860e885d/p6zYvoHDyn9UX8A7BXsJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8346139f-52a5-4f65-832d-df894dde42cf/7U9DSjPeQxYW2afTiZtd.webp,https://static.pierrefrey.com/uploads/product/packshots/f29f25c3-55c9-4bf5-939a-a7268dd85aec/KSUsGEwp1aUrOQhRWhNP.webp,https://static.pierrefrey.com/uploads/product/packshots/218bf3fa-cdba-4af3-b0fd-a77563aab061/zTQRh9zPzW16Tvu9Ll5h.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:43.848Z"}
+{"mfr_sku":"FP072002","pattern_name":"L'aurore","color_name":"Sunset","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP072002-laurore","list_image":"https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 147 cm - 57,87 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY45"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 147 cm - 57,87 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"L'aurore","description":"Wide width printed wallpapers, L'aurore. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:44.731Z"}
+{"mfr_sku":"FP036001","pattern_name":"Hemera","color_name":"Neige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP036001-hemera","list_image":"https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"60 % Polyamide - 27 % Viscose - 10 % Polyester - 2 % Poly métal - 1 % Cotton","Width":"139 cm / 54,72 inch","Repeat":"H: 46 cm - 18,00 inch | V: 57 cm - 22,44 inch | Straight repeat","Weight":"348 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"139 cm / 54,72 inch","composition":"60 % Polyamide - 27 % Viscose - 10 % Polyester - 2 % Poly métal - 1 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 46 cm - 18,00 inch | V: 57 cm - 22,44 inch | Straight repeat","weight":"348 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Hemera","description":"Paperbacked fabrics, Hemera. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:45.635Z"}
+{"mfr_sku":"LP103003","pattern_name":"L'arbre indien","color_name":"Rose","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP103003-larbre-indien","list_image":"https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  3,66 mts","Backing":"PAPER","Composition":"-","Width":"91 cm / 35,82 inch","Repeat":"H: 91 cm - 35,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","Weight":"160 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"91 cm / 35,82 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 91 cm - 35,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  3,66 mts","roll_length":null,"collection":"L'arbre indien","description":"Small width printed wallpapers, L'arbre indien. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/0c421e2d-53b9-4cee-a675-291be08762d0/5Ouvq8pADTmZyhqgkvxk.webp","https://static.pierrefrey.com/uploads/product/packshots/a212f17b-23b5-4d38-a16f-4a36ed029703/1ULtO8z5T7txMbheMJ3d.webp","https://static.pierrefrey.com/uploads/product/packshots/7d75e440-cedd-4f6a-96c5-cd0570975d2e/XjQ4REi6cPLp0nkQurvN.webp","https://static.pierrefrey.com/uploads/product/packshots/50b563bf-7d10-45d2-840c-157815243fd4/brJaYqrAXmuFvDsAYd5t.webp","https://static.pierrefrey.com/uploads/product/packshots/1eb63eff-b5e9-4b95-88ba-962431939661/8EtSb31vua84YiVDnOxg.webp","https://static.pierrefrey.com/uploads/product/packshots/0f3073f9-d5a0-4bf8-8b4f-ce25dd5410c6/v6hxUgR98ayFMXhp13SC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/0c421e2d-53b9-4cee-a675-291be08762d0/5Ouvq8pADTmZyhqgkvxk.webp,https://static.pierrefrey.com/uploads/product/packshots/a212f17b-23b5-4d38-a16f-4a36ed029703/1ULtO8z5T7txMbheMJ3d.webp,https://static.pierrefrey.com/uploads/product/packshots/7d75e440-cedd-4f6a-96c5-cd0570975d2e/XjQ4REi6cPLp0nkQurvN.webp,https://static.pierrefrey.com/uploads/product/packshots/50b563bf-7d10-45d2-840c-157815243fd4/brJaYqrAXmuFvDsAYd5t.webp,https://static.pierrefrey.com/uploads/product/packshots/1eb63eff-b5e9-4b95-88ba-962431939661/8EtSb31vua84YiVDnOxg.webp,https://static.pierrefrey.com/uploads/product/packshots/0f3073f9-d5a0-4bf8-8b4f-ce25dd5410c6/v6hxUgR98ayFMXhp13SC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:46.372Z"}
+{"mfr_sku":"FP195001","pattern_name":"Coutances","color_name":"Natural","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP195001-coutances","list_image":"https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 71 cm - 27,95 inch | Half drop repeat","Weight":"202 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 71 cm - 27,95 inch | Half drop repeat","weight":"202 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Coutances","description":"Small width printed wallpapers, Coutances. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:47.140Z"}
+{"mfr_sku":"BP361002","pattern_name":"La discrete","color_name":"Vert","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP361002-la-discrete","list_image":"https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"La discrete","description":"Small width printed wallpapers, La discrete. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:48.153Z"}
+{"mfr_sku":"FP024003","pattern_name":"Tyler","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP024003-tyler","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 166 cm - 65,35 inch | Straight repeat","Weight":"235 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY43"},"width":"129 cm / 50,78 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 129 cm - 50,00 inch | V: 166 cm - 65,35 inch | Straight repeat","weight":"235 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tyler","description":"Small width printed wallpapers - Paperbacked fabrics, Tyler. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:49.116Z"}
+{"mfr_sku":"FP648007","pattern_name":"Ernesto","color_name":"Osier","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP648007-ernesto","list_image":"https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE_251x335_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"85 % Polyester - 15 % Acrylic","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"270 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY35"},"width":"140 cm / 55,11 inch","composition":"85 % Polyester - 15 % Acrylic","material":"NON WOVEN","pattern_repeat":"Free match","weight":"270 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ernesto","description":"Plains & semi plains - Paperbacked fabrics, Ernesto. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:49.973Z"}
+{"mfr_sku":"FP940001","pattern_name":"Melbourne","color_name":"Opale","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP940001-melbourne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8766317b-834c-45ce-97dd-ae593ef38792/bgPQjzrIm5V2jqeuTo25_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Artist":"Élise Djo-Bourgeois","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Cotton","Width":"136 cm / 53,54 inch","Repeat":"H: 45 cm - 17,00 inch | V: 16 cm - 6,29 inch | Straight repeat","Weight":"435 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"ASTM E84 Class A","Information":"Inherent irregularities from the natural fiber","Book":"F9979PPFREY38"},"width":"136 cm / 53,54 inch","composition":"100 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 45 cm - 17,00 inch | V: 16 cm - 6,29 inch | Straight repeat","weight":"435 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Melbourne","description":"Wide width printed wallpapers - Paperbacked fabrics, Melbourne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8766317b-834c-45ce-97dd-ae593ef38792/bgPQjzrIm5V2jqeuTo25.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8766317b-834c-45ce-97dd-ae593ef38792/bgPQjzrIm5V2jqeuTo25.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8766317b-834c-45ce-97dd-ae593ef38792/bgPQjzrIm5V2jqeuTo25.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:50.779Z"}
+{"mfr_sku":"FP796001","pattern_name":"Surrealist ball","color_name":"Croquis","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP796001-surrealist-ball","list_image":"https://static.pierrefrey.com/uploads/product/packshots/87fede71-35aa-49e9-bf4b-684b484f8552/lhfOvuAvrYhb7MAGjOnk_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Ken Fulk","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 146 cm - 57,48 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY30"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 146 cm - 57,48 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Surrealist ball","description":"Wide width printed wallpapers, Surrealist ball. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/87fede71-35aa-49e9-bf4b-684b484f8552/lhfOvuAvrYhb7MAGjOnk.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/87fede71-35aa-49e9-bf4b-684b484f8552/lhfOvuAvrYhb7MAGjOnk.webp","https://static.pierrefrey.com/uploads/product/packshots/fd7a7ada-29a2-4d20-9dcb-63584449ec27/BjwbxONjEqNZpbVHBrgw.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/87fede71-35aa-49e9-bf4b-684b484f8552/lhfOvuAvrYhb7MAGjOnk.webp,https://static.pierrefrey.com/uploads/product/packshots/fd7a7ada-29a2-4d20-9dcb-63584449ec27/BjwbxONjEqNZpbVHBrgw.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:51.412Z"}
+{"mfr_sku":"FP197003","pattern_name":"Ming","color_name":"Saphire","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP197003-ming","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 64 cm - 25,19 inch | Straight repeat","Weight":"202 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 64 cm - 25,19 inch | Straight repeat","weight":"202 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Ming","description":"Small width printed wallpapers, Ming. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/22fe4eb0-2653-42a7-8e8a-1d5fb33039a9/3zsr2jakqOU0eOiiRf8c.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/22fe4eb0-2653-42a7-8e8a-1d5fb33039a9/3zsr2jakqOU0eOiiRf8c.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:52.189Z"}
+{"mfr_sku":"FP870003","pattern_name":"Oka","color_name":"Ocean","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP870003-oka","list_image":"https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 68 cm - 26,00 inch | V: 56 cm - 22,04 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY33"},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 56 cm - 22,04 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Oka","description":"Wide width printed wallpapers, Oka. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp,https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:52.822Z"}
+{"mfr_sku":"FP039001","pattern_name":"Danae","color_name":"Nacre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP039001-danae","list_image":"https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"139 cm / 54,72 inch","Repeat":"H: 69 cm - 27,00 inch | V: 78 cm - 30,70 inch | Straight repeat","Weight":"333 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY43"},"width":"139 cm / 54,72 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 69 cm - 27,00 inch | V: 78 cm - 30,70 inch | Straight repeat","weight":"333 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Danae","description":"Paperbacked fabrics, Danae. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:53.715Z"}
+{"mfr_sku":"BP330003","pattern_name":"La pannonie","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP330003-la-pannonie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"B9979PPBRAQ4"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"La pannonie","description":"Small width printed wallpapers, La pannonie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/fa051c85-eae2-4a81-bae2-ba7b70656b9f/IVrmw7G0ZIoDGdQugVXc.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/fa051c85-eae2-4a81-bae2-ba7b70656b9f/IVrmw7G0ZIoDGdQugVXc.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:54.572Z"}
+{"mfr_sku":"FP651002","pattern_name":"Portofino","color_name":"Ivoire","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP651002-portofino","list_image":"https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"60 % Viscose - 31 % Cotton - 9 % Linen","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"685 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect"},"width":"130 cm / 51,18 inch","composition":"60 % Viscose - 31 % Cotton - 9 % Linen","material":"NON WOVEN","pattern_repeat":"Free match","weight":"685 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Portofino","description":"Plains & semi plains - Paperbacked fabrics, Portofino. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:55.534Z"}
+{"mfr_sku":"FP565001","pattern_name":"Tampa","color_name":"Palmeraie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP565001-tampa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"460 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tampa","description":"Small width printed wallpapers - Vinyls, Tampa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp","https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp","https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp","https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp","https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp","https://static.pierrefrey.com/uploads/product/packshots/df9f729e-3459-481e-9ff4-33eb57a2bbaf/TtWUkFZPTdKTpWIvHoQY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp,https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp,https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp,https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp,https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp,https://static.pierrefrey.com/uploads/product/packshots/df9f729e-3459-481e-9ff4-33eb57a2bbaf/TtWUkFZPTdKTpWIvHoQY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:56.276Z"}
+{"mfr_sku":"FP861003","pattern_name":"Fontainebleau","color_name":"Chataigne","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP861003-fontainebleau","list_image":"https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 105 cm - 41,33 inch | Half drop repeat","Weight":"152 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 105 cm - 41,33 inch | Half drop repeat","weight":"152 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fontainebleau","description":"Wide width printed wallpapers, Fontainebleau. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","https://static.pierrefrey.com/uploads/product/packshots/389addbc-df47-4627-8876-3032ab336d70/ENQbvHNrGAEVgPykJYDI.webp","https://static.pierrefrey.com/uploads/product/packshots/6e004099-c9a6-4856-96f0-4bbc615a20a5/LYt3obu2Ou5QNDa6f4km.webp","https://static.pierrefrey.com/uploads/product/packshots/c403c251-7035-4233-8955-943cb69920ff/HDBF0scKtvbneoyd3OhM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp,https://static.pierrefrey.com/uploads/product/packshots/389addbc-df47-4627-8876-3032ab336d70/ENQbvHNrGAEVgPykJYDI.webp,https://static.pierrefrey.com/uploads/product/packshots/6e004099-c9a6-4856-96f0-4bbc615a20a5/LYt3obu2Ou5QNDa6f4km.webp,https://static.pierrefrey.com/uploads/product/packshots/c403c251-7035-4233-8955-943cb69920ff/HDBF0scKtvbneoyd3OhM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:57.100Z"}
+{"mfr_sku":"FP473001","pattern_name":"Yangzi","color_name":"Citron","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP473001-yangzi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"50 % Sisa - 50 % Polyester","Width":"87 cm / 34,25 inch","Repeat":"H: 44 cm - 17,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"297 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness"},"width":"87 cm / 34,25 inch","composition":"50 % Sisa - 50 % Polyester","material":"PAPER","pattern_repeat":"H: 44 cm - 17,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"297 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Yangzi","description":"Small width printed wallpapers - Straws and similar materials, Yangzi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp","https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp","https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp","https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp","https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp,https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp,https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp,https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp,https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:57.711Z"}
+{"mfr_sku":"BP309002","pattern_name":"Wallpaper gisors","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP309002-wallpaper-gisors","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 17 cm - 6,00 inch | Free match","Weight":"151 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Notes":"Hand screen printed"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 17 cm - 6,00 inch | Free match","weight":"151 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Wallpaper gisors","description":"Small width printed wallpapers, Wallpaper gisors. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:58.419Z"}
+{"mfr_sku":"FP562004","pattern_name":"Nuages","color_name":"Indigo","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP562004-nuages","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8a887629-6f6e-4eab-9ee0-6b765557d708/KTcdRQUkFQtAp5P7vVtC_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,00 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant","Book":"F9979PPFREY18"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,00 mts","roll_length":null,"collection":"Nuages","description":"Small width printed wallpapers - Vinyls, Nuages. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8a887629-6f6e-4eab-9ee0-6b765557d708/KTcdRQUkFQtAp5P7vVtC.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8a887629-6f6e-4eab-9ee0-6b765557d708/KTcdRQUkFQtAp5P7vVtC.webp","https://static.pierrefrey.com/uploads/product/packshots/24b1f7aa-748a-4d73-88e8-4bb639fcb976/zCfCt0R8nOFAU3i3wp4H.webp","https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp","https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp","https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp","https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp","https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8a887629-6f6e-4eab-9ee0-6b765557d708/KTcdRQUkFQtAp5P7vVtC.webp,https://static.pierrefrey.com/uploads/product/packshots/24b1f7aa-748a-4d73-88e8-4bb639fcb976/zCfCt0R8nOFAU3i3wp4H.webp,https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp,https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp,https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp,https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp,https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:59.092Z"}
+{"mfr_sku":"FP066002","pattern_name":"Tadoba","color_name":"Tigre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP066002-tadoba","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 67 cm - 26,37 inch | Straight repeat","Weight":"405 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY45"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 67 cm - 26,37 inch | Straight repeat","weight":"405 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tadoba","description":"Vinyls - Printed wallpapers, Tadoba. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:14:59.955Z"}
+{"mfr_sku":"FP838001","pattern_name":"Momiji","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP838001-momiji","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"H: 90 cm - 35,00 inch | V: 109 cm - 42,91 inch | Half drop repeat","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 109 cm - 42,91 inch | Half drop repeat","weight":"205 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Momiji","description":"Wide width printed wallpapers - Paperbacked fabrics, Momiji. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:00.790Z"}
+{"mfr_sku":"BP370003","pattern_name":"Chantonnay","color_name":"Bleu Tendre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP370003-chantonnay","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 104 cm - 40,94 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"B9979PPBRAQ9"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 104 cm - 40,94 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Chantonnay","description":"Wide width printed wallpapers, Chantonnay. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/f4e3e6a4-6b09-4b8d-974a-13da81b34f1a/SEdsMbP0nUxdDEihwENR.webp","https://static.pierrefrey.com/uploads/product/packshots/42786797-4625-4af3-b2df-d958df113f5b/98LWxltHWbV8bbA6Iw32.webp","https://static.pierrefrey.com/uploads/product/packshots/1080696f-4775-4a50-899a-bbd4b2de257f/3kGDuj7c8eiW8Mf1oiP2.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/f4e3e6a4-6b09-4b8d-974a-13da81b34f1a/SEdsMbP0nUxdDEihwENR.webp,https://static.pierrefrey.com/uploads/product/packshots/42786797-4625-4af3-b2df-d958df113f5b/98LWxltHWbV8bbA6Iw32.webp,https://static.pierrefrey.com/uploads/product/packshots/1080696f-4775-4a50-899a-bbd4b2de257f/3kGDuj7c8eiW8Mf1oiP2.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:03.884Z"}
+{"mfr_sku":"W4928002","pattern_name":"Wallpaper jamaica","color_name":"Yellow","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4928002-wallpaper-jamaica","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 91 cm - 35,82 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 91 cm - 35,82 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper jamaica","description":"Small width printed wallpapers, Wallpaper jamaica. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:04.902Z"}
+{"mfr_sku":"FP181001","pattern_name":"Wallpaper sintra","color_name":"Adriatique","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP181001-wallpaper-sintra","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 96 cm - 37,79 inch | Half drop repeat","Weight":"173 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 96 cm - 37,79 inch | Half drop repeat","weight":"173 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper sintra","description":"Small width printed wallpapers, Wallpaper sintra. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:05.963Z"}
+{"mfr_sku":"FP613003","pattern_name":"Voyage en toscane la montagne","color_name":"Fp613003","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP613003-voyage-en-toscane-la-montagne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Panoramic wallpapers","Sales Unit":"Full panoramic  137 cm x 300 cm ( 2 lengths  68 cm x 300 cm) -  53,93 in x 118,11 in( 2 lengths  26,77 in x 118,11 in)","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 137 cm - 53,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Sold as a complete artwork","Information":"Panel effect | 1 roll = 2 panels"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  137 cm x 300 cm ( 2 lengths  68 cm x 300 cm) -  53,93 in x 118,11 in( 2 lengths  26,77 in x 118,11 in)","roll_length":null,"collection":"Voyage en toscane la montagne","description":"Small width printed wallpapers - Panoramic wallpapers, Voyage en toscane la montagne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp","https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp","https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp","https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp","https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp","https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp","https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp","https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp","https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp","https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/VVnlm6ltRaBA4sRWBd5d.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp,https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp,https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp,https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp,https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp,https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp,https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp,https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp,https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp,https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/VVnlm6ltRaBA4sRWBd5d.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/VVnlm6ltRaBA4sRWBd5d.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:15:06.699Z"}
+{"mfr_sku":"BP346002","pattern_name":"Indira","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP346002-indira","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"H: 65 cm - 25,00 inch | V: 145 cm - 57,08 inch | Straight repeat","Weight":"325 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ9"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 65 cm - 25,00 inch | V: 145 cm - 57,08 inch | Straight repeat","weight":"325 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Indira","description":"Wide width printed wallpapers - Paperbacked fabrics, Indira. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/2176897f-e64b-45ce-a6f9-809c1d7e9e6a/Wayc0q7jYwSowYy4QBoX.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/2176897f-e64b-45ce-a6f9-809c1d7e9e6a/Wayc0q7jYwSowYy4QBoX.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:07.762Z"}
+{"mfr_sku":"FP063001","pattern_name":"Segou","color_name":"Ocre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP063001-segou","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Ecole Ndomo","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 109 cm - 42,91 inch | Straight repeat","Weight":"165 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY45"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 109 cm - 42,91 inch | Straight repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Segou","description":"Wide width printed wallpapers, Segou. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/7392513b-76cb-44bd-b8f3-d3b45f62e36d/3EEsLFey8JCh0YsdpiR7.webp","https://static.pierrefrey.com/uploads/product/packshots/be9c6af1-1dcb-42a7-9e38-a05f92dd94bc/9Y0GxsMNgl2lSPSGd4US.webp","https://static.pierrefrey.com/uploads/product/packshots/8d791568-42c2-446c-b9e6-0ff3ca4cad57/NvL28dSIPq6eYjal8ozX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/7392513b-76cb-44bd-b8f3-d3b45f62e36d/3EEsLFey8JCh0YsdpiR7.webp,https://static.pierrefrey.com/uploads/product/packshots/be9c6af1-1dcb-42a7-9e38-a05f92dd94bc/9Y0GxsMNgl2lSPSGd4US.webp,https://static.pierrefrey.com/uploads/product/packshots/8d791568-42c2-446c-b9e6-0ff3ca4cad57/NvL28dSIPq6eYjal8ozX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:08.509Z"}
+{"mfr_sku":"FP882004","pattern_name":"Comedia","color_name":"Arlequin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP882004-comedia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8ddd9ebe-d08b-4c91-8ad4-0224de651758/4WAWUGsuRnkp14I63i6V_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 142 cm - 55,90 inch | Straight repeat","Weight":"380 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Dry strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Extra washable","Book":"F9979PPFREY33"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"PAPER","pattern_repeat":"H: 68 cm - 26,00 inch | V: 142 cm - 55,90 inch | Straight repeat","weight":"380 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Comedia","description":"Small width printed wallpapers - Vinyls, Comedia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8ddd9ebe-d08b-4c91-8ad4-0224de651758/4WAWUGsuRnkp14I63i6V.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8ddd9ebe-d08b-4c91-8ad4-0224de651758/4WAWUGsuRnkp14I63i6V.webp","https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8ddd9ebe-d08b-4c91-8ad4-0224de651758/4WAWUGsuRnkp14I63i6V.webp,https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp,https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:09.414Z"}
+{"mfr_sku":"FP923004","pattern_name":"Suzette","color_name":"Argent","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP923004-suzette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"29 % Linen - 28 % Wool - 19 % Polyester - 16 % Cotton - 8 % Polyamide","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"357 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"29 % Linen - 28 % Wool - 19 % Polyester - 16 % Cotton - 8 % Polyamide","material":"NON WOVEN","pattern_repeat":"Free match","weight":"357 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Suzette","description":"Paperbacked fabrics, Suzette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:10.239Z"}
+{"mfr_sku":"BP365004","pattern_name":"Pontchartrain coordonne","color_name":"Anis","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP365004-pontchartrain-coordonne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 32 cm - 12,59 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 32 cm - 12,59 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Pontchartrain coordonne","description":"Small width printed wallpapers, Pontchartrain coordonne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/ff4f3828-a884-473e-b206-ef9fd2f3cb84/t3ploOwZhYx5Q9rzKAQh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/ff4f3828-a884-473e-b206-ef9fd2f3cb84/t3ploOwZhYx5Q9rzKAQh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:11.305Z"}
+{"mfr_sku":"FP891001","pattern_name":"Papyrus","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP891001-papyrus","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Raffia","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"242 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Book":"F9979PPFREY32 | F9979PPFREY37"},"width":"87 cm / 34,25 inch","composition":"100 % Raffia","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"242 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Papyrus","description":"Small width printed wallpapers - Straws and similar materials, Papyrus. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp","https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp","https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp","https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp","https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp,https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp,https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp,https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp,https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:11.943Z"}
+{"mfr_sku":"FP566001","pattern_name":"Totem","color_name":"Positif","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP566001-totem","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Christian Astuguevieille","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"127 cm / 50,00 inch","Repeat":"H: 127 cm - 50,00 inch | V: 140 cm - 55,11 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Notes":"Flame retardant backing"},"width":"127 cm / 50,00 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 127 cm - 50,00 inch | V: 140 cm - 55,11 inch | Straight repeat","weight":"180 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Totem","description":"Wide width printed wallpapers, Totem. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp","https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp","https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp","https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp","https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp","https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp","https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp","https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp","https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp","https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp","https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp","https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp","https://static.pierrefrey.com/uploads/product/packshots/985b2c0f-4573-4691-8bb9-6c37fce03bfe/j2qaLsraQEG4lZLE46tq.webp","https://static.pierrefrey.com/uploads/product/packshots/e76fe574-0e85-4569-afd9-9cb381b4a2c0/9JfpkNHasXF7hxhFS7ch.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp,https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp,https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp,https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp,https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp,https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp,https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp,https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp,https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp,https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp,https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp,https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp,https://static.pierrefrey.com/uploads/product/packshots/985b2c0f-4573-4691-8bb9-6c37fce03bfe/j2qaLsraQEG4lZLE46tq.webp,https://static.pierrefrey.com/uploads/product/packshots/e76fe574-0e85-4569-afd9-9cb381b4a2c0/9JfpkNHasXF7hxhFS7ch.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:12.730Z"}
+{"mfr_sku":"FP066001","pattern_name":"Tadoba","color_name":"Neige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP066001-tadoba","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 67 cm - 26,37 inch | Straight repeat","Weight":"405 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY45"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 67 cm - 26,37 inch | Straight repeat","weight":"405 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tadoba","description":"Vinyls - Printed wallpapers, Tadoba. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:13.443Z"}
+{"mfr_sku":"FP861001","pattern_name":"Fontainebleau","color_name":"Amande","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP861001-fontainebleau","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 105 cm - 41,33 inch | Half drop repeat","Weight":"152 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 105 cm - 41,33 inch | Half drop repeat","weight":"152 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fontainebleau","description":"Wide width printed wallpapers, Fontainebleau. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","https://static.pierrefrey.com/uploads/product/packshots/389addbc-df47-4627-8876-3032ab336d70/ENQbvHNrGAEVgPykJYDI.webp","https://static.pierrefrey.com/uploads/product/packshots/6e004099-c9a6-4856-96f0-4bbc615a20a5/LYt3obu2Ou5QNDa6f4km.webp","https://static.pierrefrey.com/uploads/product/packshots/c403c251-7035-4233-8955-943cb69920ff/HDBF0scKtvbneoyd3OhM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp,https://static.pierrefrey.com/uploads/product/packshots/389addbc-df47-4627-8876-3032ab336d70/ENQbvHNrGAEVgPykJYDI.webp,https://static.pierrefrey.com/uploads/product/packshots/6e004099-c9a6-4856-96f0-4bbc615a20a5/LYt3obu2Ou5QNDa6f4km.webp,https://static.pierrefrey.com/uploads/product/packshots/c403c251-7035-4233-8955-943cb69920ff/HDBF0scKtvbneoyd3OhM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:14.171Z"}
+{"mfr_sku":"FP639001","pattern_name":"Zelie","color_name":"Naturel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP639001-zelie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"76 % Viscose - 12 % Silk - 12 % Cotton","Width":"136 cm / 53,54 inch","Repeat":"Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"136 cm / 53,54 inch","composition":"76 % Viscose - 12 % Silk - 12 % Cotton","material":"NON WOVEN","pattern_repeat":"Straight repeat","weight":"180 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Zelie","description":"Paperbacked fabrics, Zelie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","https://static.pierrefrey.com/uploads/product/packshots/0991fb25-88a7-42ec-bf61-4fcf8c9bdcc1/OOkag3U0pL91uCwOpyKM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp,https://static.pierrefrey.com/uploads/product/packshots/0991fb25-88a7-42ec-bf61-4fcf8c9bdcc1/OOkag3U0pL91uCwOpyKM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:14.947Z"}
+{"mfr_sku":"FP391001","pattern_name":"Colomba","color_name":"Coquillage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP391001-colomba","list_image":"https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew_335x251_webp.webp","specs":{"Type":"Straws and similar materials","Sales Unit":"Available per roll of  6,00 mts","Backing":"PAPER","Composition":"100 % Paper","Width":"91 cm / 35,82 inch","Repeat":"Free match","Weight":"195 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect"},"width":"91 cm / 35,82 inch","composition":"100 % Paper","material":"PAPER","pattern_repeat":"Free match","weight":"195 gr / m²","certifications":null,"sales_unit":"Available per roll of  6,00 mts","roll_length":null,"collection":"Colomba","description":"Straws and similar materials, Colomba. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew.webp","https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK.webp","https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI.webp","https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew.webp,https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK.webp,https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI.webp,https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:15.638Z"}
+{"mfr_sku":"FP064002","pattern_name":"Costa","color_name":"Dune","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP064002-costa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"31 % Polyester - 26 % Cotton - 18 % Viscose - 17 % Polyamide - 6 % Acrylic - 2 % Linen","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"550 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Information":"Panel effect","Book":"F9979PPFREY45"},"width":"137 cm / 53,93 inch","composition":"31 % Polyester - 26 % Cotton - 18 % Viscose - 17 % Polyamide - 6 % Acrylic - 2 % Linen","material":"NON WOVEN","pattern_repeat":"Free match","weight":"550 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Costa","description":"Paperbacked fabrics, Costa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:16.361Z"}
+{"mfr_sku":"FP444001","pattern_name":"Arty","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP444001-arty","list_image":"https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Artist":"Marie-Cécile Aptel","Sales Unit":"Available per roll of 10,05 mts","Backing":"PAPER","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 95 cm - 37,40 inch | Half drop repeat","Weight":"289 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Dry strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Stain and impact resistant","Book":"F9979PPFREY9"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"PAPER","pattern_repeat":"H: 70 cm - 27,00 inch | V: 95 cm - 37,40 inch | Half drop repeat","weight":"289 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Arty","description":"Small width printed wallpapers - Vinyls, Arty. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp","https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp","https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp","https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp","https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp","https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp","https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp","https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp","https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp","https://static.pierrefrey.com/uploads/product/packshots/09f669cb-195e-4c0f-808d-eb579f15aff3/wnCK5QPXgTIhZ3jQzmv6.webp","https://static.pierrefrey.com/uploads/product/packshots/edf2db07-3919-4ac7-878a-10c9d2998524/pevky5d0Q1kMpXOSkI5k.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp,https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp,https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp,https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp,https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp,https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp,https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp,https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp,https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp,https://static.pierrefrey.com/uploads/product/packshots/09f669cb-195e-4c0f-808d-eb579f15aff3/wnCK5QPXgTIhZ3jQzmv6.webp,https://static.pierrefrey.com/uploads/product/packshots/edf2db07-3919-4ac7-878a-10c9d2998524/pevky5d0Q1kMpXOSkI5k.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:16.978Z"}
+{"mfr_sku":"FP390002","pattern_name":"Centaurus","color_name":"Tabac","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP390002-centaurus","list_image":"https://static.pierrefrey.com/uploads/product/packshots/921d019e-6e78-4e19-beac-dff1a3f0aac1/WGJDYRvGGqim1tANb4IS_335x251_webp.webp","specs":{"Type":"Straws and similar materials","Sales Unit":"Available per roll of  6,00 mts","Backing":"PAPER","Composition":"100 % Paper","Width":"91 cm / 35,82 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect"},"width":"91 cm / 35,82 inch","composition":"100 % Paper","material":"PAPER","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":null,"sales_unit":"Available per roll of  6,00 mts","roll_length":null,"collection":"Centaurus","description":"Straws and similar materials, Centaurus. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/921d019e-6e78-4e19-beac-dff1a3f0aac1/WGJDYRvGGqim1tANb4IS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/921d019e-6e78-4e19-beac-dff1a3f0aac1/WGJDYRvGGqim1tANb4IS.webp","https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK.webp","https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI.webp","https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw.webp","https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/921d019e-6e78-4e19-beac-dff1a3f0aac1/WGJDYRvGGqim1tANb4IS.webp,https://static.pierrefrey.com/uploads/product/packshots/6535b938-b6a7-43ff-9131-252c06919816/6sJtSLkX9hxIzUuU9ktK.webp,https://static.pierrefrey.com/uploads/product/packshots/785dda9e-3921-4199-bf0b-5a6924297a94/0kkma936icqmf2AKJTUI.webp,https://static.pierrefrey.com/uploads/product/packshots/19ec088d-d333-4527-adeb-0f22d78b8d55/ddcxP2t707KI0OuOuZlw.webp,https://static.pierrefrey.com/uploads/product/packshots/90821f64-b6bf-43e3-96e7-98138114129e/WtqupWYGBz5V2CO8h6Ew.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab40578-9682-4dca-a56f-74a5846c8f70/XMKSyjcPzkhvz9u5SAEP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:17.580Z"}
+{"mfr_sku":"FP636001","pattern_name":"Le jardin du palais","color_name":"Nuit","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP636001-le-jardin-du-palais","list_image":"https://static.pierrefrey.com/uploads/product/packshots/923e805b-e9b9-490b-8c68-29b5509fa518/jVjKSUjKlB9HdCMdss6S_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"94 cm / 37,00 inch","Repeat":"H: 94 cm - 37,00 inch | V: 93 cm - 36,61 inch | Half drop repeat","Weight":"195 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"94 cm / 37,00 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 94 cm - 37,00 inch | V: 93 cm - 36,61 inch | Half drop repeat","weight":"195 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le jardin du palais","description":"Wide width printed wallpapers, Le jardin du palais. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/923e805b-e9b9-490b-8c68-29b5509fa518/jVjKSUjKlB9HdCMdss6S.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/923e805b-e9b9-490b-8c68-29b5509fa518/jVjKSUjKlB9HdCMdss6S.webp","https://static.pierrefrey.com/uploads/product/packshots/661d30fe-f671-4498-8597-0902be59a25b/k9NEsc8aNQf97vckadNr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e987e23-20b0-476a-b8ff-9421d4f245f5/hdD2cK4R1LCAQX0Ez8bP.webp","https://static.pierrefrey.com/uploads/product/packshots/7372e397-a80f-4db6-a92e-6a9214748e02/sMpt40w6dZWtg4gqBiFG.webp","https://static.pierrefrey.com/uploads/product/packshots/a5705ed4-6f64-4815-b7e3-6abf5900eb20/N5j9HGebY96MMxvxKQiD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/923e805b-e9b9-490b-8c68-29b5509fa518/jVjKSUjKlB9HdCMdss6S.webp,https://static.pierrefrey.com/uploads/product/packshots/661d30fe-f671-4498-8597-0902be59a25b/k9NEsc8aNQf97vckadNr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e987e23-20b0-476a-b8ff-9421d4f245f5/hdD2cK4R1LCAQX0Ez8bP.webp,https://static.pierrefrey.com/uploads/product/packshots/7372e397-a80f-4db6-a92e-6a9214748e02/sMpt40w6dZWtg4gqBiFG.webp,https://static.pierrefrey.com/uploads/product/packshots/a5705ed4-6f64-4815-b7e3-6abf5900eb20/N5j9HGebY96MMxvxKQiD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:18.257Z"}
+{"mfr_sku":"FP193003","pattern_name":"Aquarius","color_name":"Blue Surf","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP193003-aquarius","list_image":"https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 69 cm - 27,16 inch | Half drop repeat","Weight":"173 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 69 cm - 27,16 inch | Half drop repeat","weight":"173 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Aquarius","description":"Small width printed wallpapers, Aquarius. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:19.098Z"}
+{"mfr_sku":"FP025001","pattern_name":"Alicia","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP025001-alicia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"H: 65 cm - 25,00 inch | V: 65 cm - 25,59 inch | Straight repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY43"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 65 cm - 25,00 inch | V: 65 cm - 25,59 inch | Straight repeat","weight":"240 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Alicia","description":"Wide width printed wallpapers - Paperbacked fabrics, Alicia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:19.970Z"}
+{"mfr_sku":"FP936002","pattern_name":"Sven","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP936002-sven","list_image":"https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"H: 90 cm - 35,00 inch | V: 32 cm - 12,59 inch | Straight repeat","Weight":"248 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique | Raised pattern","Book":"F9979PPFREY36"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 32 cm - 12,59 inch | Straight repeat","weight":"248 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sven","description":"Wide width printed wallpapers - Embossed patterns, Sven. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:20.758Z"}
+{"mfr_sku":"FP765003","pattern_name":"Amala","color_name":"Granny","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP765003-amala","list_image":"https://static.pierrefrey.com/uploads/product/packshots/92ec0e54-1f57-40a6-90a0-627a2363b6e6/X1KmkbJ06mDu214xLWqj_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Collaboration":"Maison Caspari","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 7 cm - 2,75 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"F9979PPFREY25"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 7 cm - 2,75 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Amala","description":"Small width printed wallpapers, Amala. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/92ec0e54-1f57-40a6-90a0-627a2363b6e6/X1KmkbJ06mDu214xLWqj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/92ec0e54-1f57-40a6-90a0-627a2363b6e6/X1KmkbJ06mDu214xLWqj.webp","https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp","https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp","https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp","https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp","https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp","https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp","https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/92ec0e54-1f57-40a6-90a0-627a2363b6e6/X1KmkbJ06mDu214xLWqj.webp,https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp,https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp,https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp,https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp,https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp,https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp,https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:21.349Z"}
+{"mfr_sku":"BP321003","pattern_name":"La perouse","color_name":"Sous Bois","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP321003-la-perouse","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9321c6f9-6639-4b8e-83a8-b4c8c54aac94/3LYKhFJMJxxFiV3nvuDG_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"H: 128 cm - 50,00 inch | V: 79 cm - 31,10 inch | Half drop repeat","Weight":"280 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 128 cm - 50,00 inch | V: 79 cm - 31,10 inch | Half drop repeat","weight":"280 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La perouse","description":"Wide width printed wallpapers - Paperbacked fabrics, La perouse. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9321c6f9-6639-4b8e-83a8-b4c8c54aac94/3LYKhFJMJxxFiV3nvuDG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9321c6f9-6639-4b8e-83a8-b4c8c54aac94/3LYKhFJMJxxFiV3nvuDG.webp","https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp","https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp","https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp","https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp","https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp","https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp","https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp","https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9321c6f9-6639-4b8e-83a8-b4c8c54aac94/3LYKhFJMJxxFiV3nvuDG.webp,https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp,https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp,https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp,https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp,https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp,https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp,https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp,https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:22.061Z"}
+{"mfr_sku":"W4697003","pattern_name":"Wallpaper tarantelle","color_name":"Marie-Antoinette","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4697003-wallpaper-tarantelle","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 68 cm - 26,77 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 68 cm - 26,77 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper tarantelle","description":"Small width printed wallpapers, Wallpaper tarantelle. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:22.924Z"}
+{"mfr_sku":"FP008002","pattern_name":"Pleine mer","color_name":"Cactus","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP008002-pleine-mer","list_image":"https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Half drop repeat","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Book":"F9979PPFREY41"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Half drop repeat","weight":"460 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Pleine mer","description":"Vinyls - Printed wallpapers, Pleine mer. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:23.661Z"}
+{"mfr_sku":"W4641001","pattern_name":"Wallpaper ombre","color_name":"Pink","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4641001-wallpaper-ombre","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 116 cm - 45,66 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 116 cm - 45,66 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper ombre","description":"Small width printed wallpapers, Wallpaper ombre. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:24.501Z"}
+{"mfr_sku":"FP793020","pattern_name":"Nimes","color_name":"Turquoise","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP793020-nimes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"Free match","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY27"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"205 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nimes","description":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics, Nimes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp","https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp","https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp","https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp","https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp","https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp","https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp","https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp","https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp,https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp,https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp,https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp,https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp,https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp,https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp,https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp,https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:25.506Z"}
+{"mfr_sku":"FP167004","pattern_name":"Wallpaper papillons","color_name":"Corail","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP167004-wallpaper-papillons","list_image":"https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 41 cm - 16,14 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 41 cm - 16,14 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper papillons","description":"Small width printed wallpapers, Wallpaper papillons. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/7fe07972-81df-42a8-bfb2-d36588b843c2/ZgJmx80YsythnJWaIdJG.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/7fe07972-81df-42a8-bfb2-d36588b843c2/ZgJmx80YsythnJWaIdJG.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:26.403Z"}
+{"mfr_sku":"FP007001","pattern_name":"Punta cana","color_name":"Encre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP007001-punta-cana","list_image":"https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Fanny Lebon","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 87 cm - 34,25 inch | Half drop repeat","Weight":"300 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness | Raised pattern","Information":"Panel effect","Book":"F9979PPFREY41"},"width":"129 cm / 50,78 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 129 cm - 50,00 inch | V: 87 cm - 34,25 inch | Half drop repeat","weight":"300 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Punta cana","description":"Wide width printed wallpapers, Punta cana. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:27.251Z"}
+{"mfr_sku":"FP484001","pattern_name":"Heather","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP484001-heather","list_image":"https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 107 cm - 42,12 inch | Half drop repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY13"},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 107 cm - 42,12 inch | Half drop repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Heather","description":"Wide width printed wallpapers, Heather. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","https://static.pierrefrey.com/uploads/product/packshots/cc73ca46-eaea-4ca9-bbe7-c84cea1051ad/i1Ay7czSYPV3qiIzqXmu.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp,https://static.pierrefrey.com/uploads/product/packshots/cc73ca46-eaea-4ca9-bbe7-c84cea1051ad/i1Ay7czSYPV3qiIzqXmu.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:27.869Z"}
+{"mfr_sku":"FP161002","pattern_name":"Wallpaper toile de nantes","color_name":"Rose Ancien","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP161002-wallpaper-toile-de-nantes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  3,66 mts","Backing":"PAPER","Composition":"-","Width":"78 cm / 30,70 inch","Repeat":"V: 42 cm - 16,53 inch | Straight repeat","Weight":"315 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes."},"width":"78 cm / 30,70 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 42 cm - 16,53 inch | Straight repeat","weight":"315 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  3,66 mts","roll_length":null,"collection":"Wallpaper toile de nantes","description":"Small width printed wallpapers, Wallpaper toile de nantes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp","https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp","https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp","https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp","https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp","https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp","https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp,https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp,https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp,https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp,https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp,https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp,https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:28.718Z"}
+{"mfr_sku":"FP939001","pattern_name":"Owen","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP939001-owen","list_image":"https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Jute","Width":"120 cm / 47,24 inch","Repeat":"Free match","Weight":"424 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"CFA recommended | Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"120 cm / 47,24 inch","composition":"100 % Jute","material":"NON WOVEN","pattern_repeat":"Free match","weight":"424 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Owen","description":"Plains & semi plains - Paperbacked fabrics, Owen. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:29.516Z"}
+{"mfr_sku":"FP480001","pattern_name":"Martinique","color_name":"CéLadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP480001-martinique","list_image":"https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 83 cm - 32,67 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY13"},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 83 cm - 32,67 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Martinique","description":"Wide width printed wallpapers, Martinique. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:30.251Z"}
+{"mfr_sku":"FP475012","pattern_name":"Kimono","color_name":"Beige Daim","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP475012-kimono","list_image":"https://static.pierrefrey.com/uploads/product/packshots/97de0f96-cf5e-45ac-93a4-4b278418872e/MqLkk8UknSolm4ynNHoc_335x251_webp.webp","specs":{"Type":"Vinyls - Plains & semi plains","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Extra washable | Stain and impact resistant"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Kimono","description":"Vinyls - Plains & semi plains, Kimono. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/97de0f96-cf5e-45ac-93a4-4b278418872e/MqLkk8UknSolm4ynNHoc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/97de0f96-cf5e-45ac-93a4-4b278418872e/MqLkk8UknSolm4ynNHoc.webp","https://static.pierrefrey.com/uploads/product/packshots/b858d4ec-2a07-4820-95e5-96d6efa4be23/orkUPtU4OlmQZ1G3bW47.webp","https://static.pierrefrey.com/uploads/product/packshots/c60eb097-969a-4cb2-98cf-78bd3dc5665a/NJaT5p30fzjrUlPC4pCM.webp","https://static.pierrefrey.com/uploads/product/packshots/f25bd3cf-fe96-4f9c-b1ac-116c7fdbdfeb/I77fwpVZHuKGPdljGcr7.webp","https://static.pierrefrey.com/uploads/product/packshots/f303a333-51de-451e-8867-04b1e6efbe4f/ricOYx8mhrMhux6CxAa0.webp","https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp","https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp","https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp","https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp","https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/97de0f96-cf5e-45ac-93a4-4b278418872e/MqLkk8UknSolm4ynNHoc.webp,https://static.pierrefrey.com/uploads/product/packshots/b858d4ec-2a07-4820-95e5-96d6efa4be23/orkUPtU4OlmQZ1G3bW47.webp,https://static.pierrefrey.com/uploads/product/packshots/c60eb097-969a-4cb2-98cf-78bd3dc5665a/NJaT5p30fzjrUlPC4pCM.webp,https://static.pierrefrey.com/uploads/product/packshots/f25bd3cf-fe96-4f9c-b1ac-116c7fdbdfeb/I77fwpVZHuKGPdljGcr7.webp,https://static.pierrefrey.com/uploads/product/packshots/f303a333-51de-451e-8867-04b1e6efbe4f/ricOYx8mhrMhux6CxAa0.webp,https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp,https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp,https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp,https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp,https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:31.017Z"}
+{"mfr_sku":"LP103004","pattern_name":"L'arbre indien","color_name":"Prune","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP103004-larbre-indien","list_image":"https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  3,66 mts","Backing":"PAPER","Composition":"-","Width":"91 cm / 35,82 inch","Repeat":"H: 91 cm - 35,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","Weight":"160 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"91 cm / 35,82 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 91 cm - 35,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  3,66 mts","roll_length":null,"collection":"L'arbre indien","description":"Small width printed wallpapers, L'arbre indien. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/0c421e2d-53b9-4cee-a675-291be08762d0/5Ouvq8pADTmZyhqgkvxk.webp","https://static.pierrefrey.com/uploads/product/packshots/a212f17b-23b5-4d38-a16f-4a36ed029703/1ULtO8z5T7txMbheMJ3d.webp","https://static.pierrefrey.com/uploads/product/packshots/7d75e440-cedd-4f6a-96c5-cd0570975d2e/XjQ4REi6cPLp0nkQurvN.webp","https://static.pierrefrey.com/uploads/product/packshots/50b563bf-7d10-45d2-840c-157815243fd4/brJaYqrAXmuFvDsAYd5t.webp","https://static.pierrefrey.com/uploads/product/packshots/1eb63eff-b5e9-4b95-88ba-962431939661/8EtSb31vua84YiVDnOxg.webp","https://static.pierrefrey.com/uploads/product/packshots/0f3073f9-d5a0-4bf8-8b4f-ce25dd5410c6/v6hxUgR98ayFMXhp13SC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/0c421e2d-53b9-4cee-a675-291be08762d0/5Ouvq8pADTmZyhqgkvxk.webp,https://static.pierrefrey.com/uploads/product/packshots/a212f17b-23b5-4d38-a16f-4a36ed029703/1ULtO8z5T7txMbheMJ3d.webp,https://static.pierrefrey.com/uploads/product/packshots/7d75e440-cedd-4f6a-96c5-cd0570975d2e/XjQ4REi6cPLp0nkQurvN.webp,https://static.pierrefrey.com/uploads/product/packshots/50b563bf-7d10-45d2-840c-157815243fd4/brJaYqrAXmuFvDsAYd5t.webp,https://static.pierrefrey.com/uploads/product/packshots/1eb63eff-b5e9-4b95-88ba-962431939661/8EtSb31vua84YiVDnOxg.webp,https://static.pierrefrey.com/uploads/product/packshots/0f3073f9-d5a0-4bf8-8b4f-ce25dd5410c6/v6hxUgR98ayFMXhp13SC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:31.969Z"}
+{"mfr_sku":"BP338003","pattern_name":"Le paravent chinois","color_name":"Chantilly","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP338003-le-paravent-chinois","list_image":"https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 139 cm - 54,72 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 139 cm - 54,72 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le paravent chinois","description":"Wide width printed wallpapers, Le paravent chinois. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/30b3dd82-e96a-483e-9a57-0348dc80818c/JQ9iofEcxPPmsofpXmuv.webp","https://static.pierrefrey.com/uploads/product/packshots/5623c26c-0dac-43c1-88f6-d337291fc8bc/fV63oLFVaW00un9qlKME.webp","https://static.pierrefrey.com/uploads/product/packshots/e77dbe55-0d9f-431a-9b83-ebfed002dfe0/9bNvg4EaBqkoYax2GeGu.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/30b3dd82-e96a-483e-9a57-0348dc80818c/JQ9iofEcxPPmsofpXmuv.webp,https://static.pierrefrey.com/uploads/product/packshots/5623c26c-0dac-43c1-88f6-d337291fc8bc/fV63oLFVaW00un9qlKME.webp,https://static.pierrefrey.com/uploads/product/packshots/e77dbe55-0d9f-431a-9b83-ebfed002dfe0/9bNvg4EaBqkoYax2GeGu.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:32.823Z"}
+{"mfr_sku":"FP863002","pattern_name":"Sofia","color_name":"Perle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP863002-sofia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"490 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY39"},"width":"130 cm / 51,18 inch","composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"490 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sofia","description":"Plains & semi plains - Paperbacked fabrics, Sofia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:33.610Z"}
+{"mfr_sku":"BP331001","pattern_name":"L'odissi","color_name":"Rose","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP331001-lodissi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"H: 65 cm - 25,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 65 cm - 25,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"L'odissi","description":"Wide width printed wallpapers - Paperbacked fabrics, L'odissi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:34.420Z"}
+{"mfr_sku":"FP198003","pattern_name":"Planisphere","color_name":"Nutmeg","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP198003-planisphere","list_image":"https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"67 cm / 26,37 inch","Repeat":"V: 96 cm - 37,79 inch | Half drop repeat","Weight":"191 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"67 cm / 26,37 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 96 cm - 37,79 inch | Half drop repeat","weight":"191 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Planisphere","description":"Small width printed wallpapers, Planisphere. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/a5857ea7-a2b6-4380-a475-98cb6cf14de4/d6YRk9vMDSfa65ol2SNY.webp","https://static.pierrefrey.com/uploads/product/packshots/9089cdc7-6241-4274-9992-e28a44595f2d/ruM0F7cvdbDSzkfg5KZY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/a5857ea7-a2b6-4380-a475-98cb6cf14de4/d6YRk9vMDSfa65ol2SNY.webp,https://static.pierrefrey.com/uploads/product/packshots/9089cdc7-6241-4274-9992-e28a44595f2d/ruM0F7cvdbDSzkfg5KZY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:35.217Z"}
+{"mfr_sku":"LP102001","pattern_name":"Alizarine","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP102001-alizarine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"71 cm / 27,95 inch","Repeat":"H: 71 cm - 27,00 inch | V: 50 cm - 19,68 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"71 cm / 27,95 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 71 cm - 27,00 inch | V: 50 cm - 19,68 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Alizarine","description":"Small width printed wallpapers, Alizarine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/5038774b-cb46-46cd-a3c2-e32d9376c768/uB6lbnKwiT0X1GnTambE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/5038774b-cb46-46cd-a3c2-e32d9376c768/uB6lbnKwiT0X1GnTambE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:36.132Z"}
+{"mfr_sku":"W4982003","pattern_name":"Wallpaper oscar","color_name":"Blue","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4982003-wallpaper-oscar","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 75 cm - 29,52 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 75 cm - 29,52 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper oscar","description":"Small width printed wallpapers, Wallpaper oscar. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:37.000Z"}
+{"mfr_sku":"BP369001","pattern_name":"Poesie indienne","color_name":"Bindi","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP369001-poesie-indienne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Cotton","Width":"136 cm / 53,54 inch","Repeat":"H: 68 cm - 26,00 inch | V: 73 cm - 28,74 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Book":"B9979PPBRAQ9"},"width":"136 cm / 53,54 inch","composition":"100 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 73 cm - 28,74 inch | Straight repeat","weight":"400 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Poesie indienne","description":"Wide width printed wallpapers - Embossed patterns, Poesie indienne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:38.027Z"}
+{"mfr_sku":"BP207005","pattern_name":"Wallpaper les muses et le lion","color_name":"Copper","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP207005-wallpaper-les-muses-et-le-lion","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"71 cm / 27,95 inch","Repeat":"V: 74 cm - 29,13 inch | Straight repeat","Weight":"196 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"71 cm / 27,95 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 74 cm - 29,13 inch | Straight repeat","weight":"196 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper les muses et le lion","description":"Small width printed wallpapers, Wallpaper les muses et le lion. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:38.878Z"}
+{"mfr_sku":"FP016001","pattern_name":"Borneo","color_name":"Tropical","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP016001-borneo","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY41"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Borneo","description":"Wide width printed wallpapers, Borneo. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:39.750Z"}
+{"mfr_sku":"FP040001","pattern_name":"Teodor","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP040001-teodor","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"50 % Polyester - 30 % Cotton - 20 % Viscose","Width":"139 cm / 54,72 inch","Repeat":"H: 139 cm - 54,00 inch | V: 78 cm - 30,70 inch | Straight repeat","Weight":"535 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"139 cm / 54,72 inch","composition":"50 % Polyester - 30 % Cotton - 20 % Viscose","material":"NON WOVEN","pattern_repeat":"H: 139 cm - 54,00 inch | V: 78 cm - 30,70 inch | Straight repeat","weight":"535 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Teodor","description":"Paperbacked fabrics, Teodor. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:40.711Z"}
+{"mfr_sku":"FP847002","pattern_name":"Praslin","color_name":"Argile","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP847002-praslin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 49 cm - 19,00 inch | V: 49 cm - 19,29 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 49 cm - 19,00 inch | V: 49 cm - 19,29 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Praslin","description":"Wide width printed wallpapers - Vinyls, Praslin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:41.446Z"}
+{"mfr_sku":"FP002001","pattern_name":"Riad","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP002001-riad","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"135 cm / 53,14 inch","Repeat":"H: 135 cm - 53,00 inch | V: 92 cm - 36,22 inch | Straight repeat","Weight":"200 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Book":"F9979PPFREY41"},"width":"135 cm / 53,14 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 135 cm - 53,00 inch | V: 92 cm - 36,22 inch | Straight repeat","weight":"200 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Riad","description":"Wide width printed wallpapers - Embossed patterns, Riad. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:42.340Z"}
+{"mfr_sku":"FP846002","pattern_name":"Ciel reve","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP846002-ciel-reve","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 97 cm - 38,18 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 97 cm - 38,18 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ciel reve","description":"Small width printed wallpapers - Vinyls, Ciel reve. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:43.156Z"}
+{"mfr_sku":"FP405002","pattern_name":"Zia","color_name":"Chaux","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP405002-zia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"188 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"188 gr / m²","certifications":"EUROCLASS C-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Zia","description":"Plains & semi plains - Paperbacked fabrics, Zia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp","https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp","https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp","https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp","https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp","https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp","https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp,https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp,https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp,https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp,https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp,https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp,https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:43.728Z"}
+{"mfr_sku":"LP103001","pattern_name":"L'arbre indien","color_name":"CrèMe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP103001-larbre-indien","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  3,66 mts","Backing":"PAPER","Composition":"-","Width":"91 cm / 35,82 inch","Repeat":"H: 91 cm - 35,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","Weight":"160 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"91 cm / 35,82 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 91 cm - 35,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  3,66 mts","roll_length":null,"collection":"L'arbre indien","description":"Small width printed wallpapers, L'arbre indien. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/0c421e2d-53b9-4cee-a675-291be08762d0/5Ouvq8pADTmZyhqgkvxk.webp","https://static.pierrefrey.com/uploads/product/packshots/a212f17b-23b5-4d38-a16f-4a36ed029703/1ULtO8z5T7txMbheMJ3d.webp","https://static.pierrefrey.com/uploads/product/packshots/7d75e440-cedd-4f6a-96c5-cd0570975d2e/XjQ4REi6cPLp0nkQurvN.webp","https://static.pierrefrey.com/uploads/product/packshots/50b563bf-7d10-45d2-840c-157815243fd4/brJaYqrAXmuFvDsAYd5t.webp","https://static.pierrefrey.com/uploads/product/packshots/1eb63eff-b5e9-4b95-88ba-962431939661/8EtSb31vua84YiVDnOxg.webp","https://static.pierrefrey.com/uploads/product/packshots/0f3073f9-d5a0-4bf8-8b4f-ce25dd5410c6/v6hxUgR98ayFMXhp13SC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/0c421e2d-53b9-4cee-a675-291be08762d0/5Ouvq8pADTmZyhqgkvxk.webp,https://static.pierrefrey.com/uploads/product/packshots/a212f17b-23b5-4d38-a16f-4a36ed029703/1ULtO8z5T7txMbheMJ3d.webp,https://static.pierrefrey.com/uploads/product/packshots/7d75e440-cedd-4f6a-96c5-cd0570975d2e/XjQ4REi6cPLp0nkQurvN.webp,https://static.pierrefrey.com/uploads/product/packshots/50b563bf-7d10-45d2-840c-157815243fd4/brJaYqrAXmuFvDsAYd5t.webp,https://static.pierrefrey.com/uploads/product/packshots/1eb63eff-b5e9-4b95-88ba-962431939661/8EtSb31vua84YiVDnOxg.webp,https://static.pierrefrey.com/uploads/product/packshots/0f3073f9-d5a0-4bf8-8b4f-ce25dd5410c6/v6hxUgR98ayFMXhp13SC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:44.666Z"}
+{"mfr_sku":"BP330004","pattern_name":"La pannonie","color_name":"Vert","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP330004-la-pannonie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"B9979PPBRAQ4"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"La pannonie","description":"Small width printed wallpapers, La pannonie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/fa051c85-eae2-4a81-bae2-ba7b70656b9f/IVrmw7G0ZIoDGdQugVXc.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/fa051c85-eae2-4a81-bae2-ba7b70656b9f/IVrmw7G0ZIoDGdQugVXc.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:45.489Z"}
+{"mfr_sku":"FP310004","pattern_name":"Jardin de mysore","color_name":"Brun","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP310004-jardin-de-mysore","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 91 cm - 35,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 91 cm - 35,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Jardin de mysore","description":"Wide width printed wallpapers, Jardin de mysore. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp","https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp","https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp","https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp","https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp","https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp","https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp","https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp","https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp","https://static.pierrefrey.com/uploads/product/packshots/8139ab87-b1eb-44d3-b50a-45085c812e6d/yrvjK1egPJjYZBeyZ3Ql.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp,https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp,https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp,https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp,https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp,https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp,https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp,https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp,https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp,https://static.pierrefrey.com/uploads/product/packshots/8139ab87-b1eb-44d3-b50a-45085c812e6d/yrvjK1egPJjYZBeyZ3Ql.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:46.169Z"}
+{"mfr_sku":"FP057001","pattern_name":"Akimasa","color_name":"Indigo","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP057001-akimasa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 98 cm - 38,00 inch | V: 50 cm - 19,68 inch | Straight repeat","Weight":"405 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Book":"F9979PPFREY44"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 98 cm - 38,00 inch | V: 50 cm - 19,68 inch | Straight repeat","weight":"405 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Akimasa","description":"Wide width printed wallpapers - Vinyls, Akimasa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:47.041Z"}
+{"mfr_sku":"FP328005","pattern_name":"Mojito","color_name":"Azulejos","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP328005-mojito","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"52 cm / 20,47 inch","Repeat":"V: 61 cm - 24,01 inch | Straight repeat","Weight":"195 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Notes":"Good lightfastness | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"V: 61 cm - 24,01 inch | Straight repeat","weight":"195 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Mojito","description":"Small width printed wallpapers, Mojito. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp","https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp","https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp","https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp","https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp","https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp","https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp","https://static.pierrefrey.com/uploads/product/packshots/a866cb9e-f5ad-42a1-8803-a2cd9e5698ef/9qPCLzUjqeRSd42OvUUs.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp,https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp,https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp,https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp,https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp,https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp,https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp,https://static.pierrefrey.com/uploads/product/packshots/a866cb9e-f5ad-42a1-8803-a2cd9e5698ef/9qPCLzUjqeRSd42OvUUs.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:47.813Z"}
+{"mfr_sku":"BP334017","pattern_name":"Shiva","color_name":"Nuage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334017-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:48.665Z"}
+{"mfr_sku":"BP362003","pattern_name":"Ursuline","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP362003-ursuline","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 59 cm - 23,22 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 59 cm - 23,22 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Ursuline","description":"Small width printed wallpapers, Ursuline. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:49.687Z"}
+{"mfr_sku":"FP648009","pattern_name":"Ernesto","color_name":"Paille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP648009-ernesto","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR_251x335_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"85 % Polyester - 15 % Acrylic","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"270 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY35"},"width":"140 cm / 55,11 inch","composition":"85 % Polyester - 15 % Acrylic","material":"NON WOVEN","pattern_repeat":"Free match","weight":"270 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ernesto","description":"Plains & semi plains - Paperbacked fabrics, Ernesto. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:50.473Z"}
+{"mfr_sku":"BP362002","pattern_name":"Ursuline","color_name":"Mauve","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP362002-ursuline","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 59 cm - 23,22 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 59 cm - 23,22 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Ursuline","description":"Small width printed wallpapers, Ursuline. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:51.419Z"}
+{"mfr_sku":"W4928001","pattern_name":"Wallpaper jamaica","color_name":"Cream","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4928001-wallpaper-jamaica","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 91 cm - 35,82 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 91 cm - 35,82 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper jamaica","description":"Small width printed wallpapers, Wallpaper jamaica. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:52.189Z"}
+{"mfr_sku":"FP648001","pattern_name":"Ernesto","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP648001-ernesto","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"85 % Polyester - 15 % Acrylic","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"270 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY35"},"width":"140 cm / 55,11 inch","composition":"85 % Polyester - 15 % Acrylic","material":"NON WOVEN","pattern_repeat":"Free match","weight":"270 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ernesto","description":"Plains & semi plains - Paperbacked fabrics, Ernesto. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:53.057Z"}
+{"mfr_sku":"FP319001","pattern_name":"L'armoire de marguerite","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP319001-larmoire-de-marguerite","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"140 cm / 55,11 inch","Repeat":"V: 128 cm - 50,39 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"140 cm / 55,11 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"V: 128 cm - 50,39 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"L'armoire de marguerite","description":"Wide width printed wallpapers, L'armoire de marguerite. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp","https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp","https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp","https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp","https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp","https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp","https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp,https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp,https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp,https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp,https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp,https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp,https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:53.778Z"}
+{"mfr_sku":"FP927002","pattern_name":"Flavie","color_name":"Albatre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP927002-flavie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"65 % Polyamide - 21 % Cotton - 12 % Polyester - 2 % metallised yarn Lurex","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"330 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"65 % Polyamide - 21 % Cotton - 12 % Polyester - 2 % metallised yarn Lurex","material":"NON WOVEN","pattern_repeat":"Free match","weight":"330 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Flavie","description":"Paperbacked fabrics, Flavie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:54.674Z"}
+{"mfr_sku":"FP530001","pattern_name":"Kyoto","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP530001-kyoto","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 90 cm - 35,43 inch | Half drop repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Extra washable"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 90 cm - 35,43 inch | Half drop repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Kyoto","description":"Small width printed wallpapers - Vinyls, Kyoto. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp","https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp","https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp","https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp","https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp","https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp","https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp","https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp","https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp","https://static.pierrefrey.com/uploads/product/packshots/a247bf56-bce0-4d80-aabc-c422fff8aa89/nDQBqmTG6ihmyC0o2XXQ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp,https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp,https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp,https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp,https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp,https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp,https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp,https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp,https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp,https://static.pierrefrey.com/uploads/product/packshots/a247bf56-bce0-4d80-aabc-c422fff8aa89/nDQBqmTG6ihmyC0o2XXQ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:55.379Z"}
+{"mfr_sku":"BP380002","pattern_name":"Jardin de bagatelle","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP380002-jardin-de-bagatelle","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 68 cm - 26,00 inch | V: 118 cm - 46,45 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"B9979PPBRAQ9"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 118 cm - 46,45 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Jardin de bagatelle","description":"Wide width printed wallpapers, Jardin de bagatelle. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:56.413Z"}
+{"mfr_sku":"BP352003","pattern_name":"Coulonges semis","color_name":"Amande","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP352003-coulonges-semis","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt_335x251_webp.webp","specs":{"Type":"Embossed patterns - Paperbacked fabrics - Embroideries","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"80 % Linen - 14 % Viscose - 6 % Polyester","Width":"129 cm / 50,78 inch","Repeat":"H: 13 cm - 5,00 inch | V: 10 cm - 3,93 inch | Straight repeat","Weight":"383 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"B9979PPBRAQ9"},"width":"129 cm / 50,78 inch","composition":"80 % Linen - 14 % Viscose - 6 % Polyester","material":"PAPER","pattern_repeat":"H: 13 cm - 5,00 inch | V: 10 cm - 3,93 inch | Straight repeat","weight":"383 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Coulonges semis","description":"Embossed patterns - Paperbacked fabrics - Embroideries, Coulonges semis. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/2130a347-38ff-4419-8e04-f9a4b6f231f7/ugJXuO4zuKuv8JiUdfzW.webp","https://static.pierrefrey.com/uploads/product/packshots/bef92d8f-65da-4275-b3fa-bd370c9608fb/FHhdEeG4wUQ8uiwpRoSN.webp","https://static.pierrefrey.com/uploads/product/packshots/5244cdee-9042-493c-90c4-819e70b4e7ee/4uGPpnLVJxPxhuBxKHtk.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/2130a347-38ff-4419-8e04-f9a4b6f231f7/ugJXuO4zuKuv8JiUdfzW.webp,https://static.pierrefrey.com/uploads/product/packshots/bef92d8f-65da-4275-b3fa-bd370c9608fb/FHhdEeG4wUQ8uiwpRoSN.webp,https://static.pierrefrey.com/uploads/product/packshots/5244cdee-9042-493c-90c4-819e70b4e7ee/4uGPpnLVJxPxhuBxKHtk.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:57.448Z"}
+{"mfr_sku":"BP334025","pattern_name":"Shiva","color_name":"Roussillon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334025-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:58.323Z"}
+{"mfr_sku":"FP881002","pattern_name":"Arlequinade","color_name":"Glacier","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP881002-arlequinade","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 134 cm - 52,75 inch | Half drop repeat","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Extra washable","Book":"F9979PPFREY33"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 134 cm - 52,75 inch | Half drop repeat","weight":"460 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Arlequinade","description":"Small width printed wallpapers - Vinyls, Arlequinade. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp,https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:58.959Z"}
+{"mfr_sku":"BP334018","pattern_name":"Shiva","color_name":"Source","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334018-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:15:59.815Z"}
+{"mfr_sku":"BP328003","pattern_name":"La comedie","color_name":"Bp328003","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP328003-la-comedie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"B9979PPBRAQ4"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"La comedie","description":"Small width printed wallpapers, La comedie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:00.710Z"}
+{"mfr_sku":"FP605001","pattern_name":"Canaima","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP605001-canaima","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Panoramic wallpapers","Artist":"Carlos Mota","Sales Unit":"Full panoramic  392 cm x 300 cm ( 4 lengths  98 cm x 300 cm) - 154,33 in x 118,11 in( 4 lengths  38,58 in x 118,11 in)","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 392 cm - 154,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 4 panels"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 392 cm - 154,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  392 cm x 300 cm ( 4 lengths  98 cm x 300 cm) - 154,33 in x 118,11 in( 4 lengths  38,58 in x 118,11 in)","roll_length":null,"collection":"Canaima","description":"Small width printed wallpapers - Vinyls - Panoramic wallpapers, Canaima. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp","https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp","https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp","https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp","https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp","https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp","https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp","https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp","https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/kKxZMrmnhFjCKFPVzjiC.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp,https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp,https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp,https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp,https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp,https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp,https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp,https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp,https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/kKxZMrmnhFjCKFPVzjiC.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/kKxZMrmnhFjCKFPVzjiC.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:16:01.826Z"}
+{"mfr_sku":"W4630A01","pattern_name":"Wallpaper bananier","color_name":"éCru Green","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4630A01-wallpaper-bananier","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of","Backing":"PAPER","Composition":"-","Width":"91 cm / 35,82 inch","Repeat":"Straight repeat","Weight":"177 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"91 cm / 35,82 inch","composition":"-","material":"PAPER","pattern_repeat":"Straight repeat","weight":"177 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per roll of","roll_length":null,"collection":"Wallpaper bananier","description":"Small width printed wallpapers, Wallpaper bananier. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:02.782Z"}
+{"mfr_sku":"FP521001","pattern_name":"La serre","color_name":"Palmier","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP521001-la-serre","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Panoramic wallpapers","Artist":"Cédric Peltier","Sales Unit":"Full panoramic  280 cm x 300 cm ( 4 lengths  70 cm x 300 cm) - 110,23 in x 118,11 in( 4 lengths  27,55 in x 118,11 in)","Backing":"NON WOVEN","Composition":"-","Width":"70 cm / 27,55 inch","Repeat":"H: 280 cm - 110,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"152 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 4 panels"},"width":"70 cm / 27,55 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 280 cm - 110,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"152 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  280 cm x 300 cm ( 4 lengths  70 cm x 300 cm) - 110,23 in x 118,11 in( 4 lengths  27,55 in x 118,11 in)","roll_length":null,"collection":"La serre","description":"Small width printed wallpapers - Panoramic wallpapers, La serre. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI.webp","https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct.webp","https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT.webp","https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8.webp","https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM.webp","https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/a6d47faa-4a43-472d-b89e-e58ee001beb7/jbDTo82qzo1Z0iNZUyJB.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI.webp,https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct.webp,https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT.webp,https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8.webp,https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM.webp,https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/a6d47faa-4a43-472d-b89e-e58ee001beb7/jbDTo82qzo1Z0iNZUyJB.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/a6d47faa-4a43-472d-b89e-e58ee001beb7/jbDTo82qzo1Z0iNZUyJB.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:16:03.601Z"}
+{"mfr_sku":"FP310002","pattern_name":"Jardin de mysore","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP310002-jardin-de-mysore","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 91 cm - 35,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 91 cm - 35,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Jardin de mysore","description":"Wide width printed wallpapers, Jardin de mysore. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp","https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp","https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp","https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp","https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp","https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp","https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp","https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp","https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp","https://static.pierrefrey.com/uploads/product/packshots/8139ab87-b1eb-44d3-b50a-45085c812e6d/yrvjK1egPJjYZBeyZ3Ql.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp,https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp,https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp,https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp,https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp,https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp,https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp,https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp,https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp,https://static.pierrefrey.com/uploads/product/packshots/8139ab87-b1eb-44d3-b50a-45085c812e6d/yrvjK1egPJjYZBeyZ3Ql.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:04.479Z"}
+{"mfr_sku":"BP204001","pattern_name":"Le grand corail","color_name":"Antique Red","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP204001-le-grand-corail","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 122 cm - 48,03 inch | Half drop repeat","Weight":"174 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 68 cm - 26,00 inch | V: 122 cm - 48,03 inch | Half drop repeat","weight":"174 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Le grand corail","description":"Small width printed wallpapers, Le grand corail. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/bcfcb3ac-a550-4dba-b3d8-a05ee2763d4e/ePxIUrvVgRBZxyWni0yX.webp","https://static.pierrefrey.com/uploads/product/packshots/4cdb57a4-482d-480a-80ac-a83d2f0a98c7/X28H65P6RNwEvlXFrn5U.webp","https://static.pierrefrey.com/uploads/product/packshots/7f7d6688-ff26-4171-8519-1103b3e4679c/XKKbBDA5qD2Y5X9WCWKC.webp","https://static.pierrefrey.com/uploads/product/packshots/bad08a74-23dc-44a5-888d-753eea6fd9e9/oaFfCJNfbbzEtU67upg2.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/bcfcb3ac-a550-4dba-b3d8-a05ee2763d4e/ePxIUrvVgRBZxyWni0yX.webp,https://static.pierrefrey.com/uploads/product/packshots/4cdb57a4-482d-480a-80ac-a83d2f0a98c7/X28H65P6RNwEvlXFrn5U.webp,https://static.pierrefrey.com/uploads/product/packshots/7f7d6688-ff26-4171-8519-1103b3e4679c/XKKbBDA5qD2Y5X9WCWKC.webp,https://static.pierrefrey.com/uploads/product/packshots/bad08a74-23dc-44a5-888d-753eea6fd9e9/oaFfCJNfbbzEtU67upg2.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:05.389Z"}
+{"mfr_sku":"W4864007","pattern_name":"Wallpaper nakai","color_name":"Black","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4864007-wallpaper-nakai","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 59 cm - 23,22 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 59 cm - 23,22 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper nakai","description":"Small width printed wallpapers, Wallpaper nakai. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","https://static.pierrefrey.com/uploads/product/packshots/e10dad45-46a8-4d65-9b6c-ae92fb743c13/KzELlwvD40J1DVPJc3UR.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp,https://static.pierrefrey.com/uploads/product/packshots/e10dad45-46a8-4d65-9b6c-ae92fb743c13/KzELlwvD40J1DVPJc3UR.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:06.314Z"}
+{"mfr_sku":"BP337001","pattern_name":"Shaolin","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP337001-shaolin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 106 cm - 41,73 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 106 cm - 41,73 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shaolin","description":"Wide width printed wallpapers, Shaolin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/8017a152-89fd-4df8-a1c3-bfdc4decd1cd/NON74QHZRjvOn8G426OM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/8017a152-89fd-4df8-a1c3-bfdc4decd1cd/NON74QHZRjvOn8G426OM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:07.497Z"}
+{"mfr_sku":"FP648011","pattern_name":"Ernesto","color_name":"Ble","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP648011-ernesto","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1_251x335_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"85 % Polyester - 15 % Acrylic","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"270 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY35"},"width":"140 cm / 55,11 inch","composition":"85 % Polyester - 15 % Acrylic","material":"NON WOVEN","pattern_repeat":"Free match","weight":"270 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ernesto","description":"Plains & semi plains - Paperbacked fabrics, Ernesto. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:08.265Z"}
+{"mfr_sku":"FP877002","pattern_name":"Pavlova","color_name":"Rose","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP877002-pavlova","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"100 cm / 39,37 inch","Repeat":"H: 100 cm - 39,00 inch | V: 65 cm - 25,59 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY33"},"width":"100 cm / 39,37 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 100 cm - 39,00 inch | V: 65 cm - 25,59 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Pavlova","description":"Wide width printed wallpapers, Pavlova. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp,https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:08.931Z"}
+{"mfr_sku":"BP334002","pattern_name":"Shiva","color_name":"CrèMe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334002-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:09.721Z"}
+{"mfr_sku":"FP863001","pattern_name":"Sofia","color_name":"Calcaire","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP863001-sofia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"490 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY39"},"width":"130 cm / 51,18 inch","composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"490 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sofia","description":"Plains & semi plains - Paperbacked fabrics, Sofia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:10.345Z"}
+{"mfr_sku":"FP514001","pattern_name":"Grand canyon","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP514001-grand-canyon","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 95 cm - 37,40 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY14"},"width":"134 cm / 52,75 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 95 cm - 37,40 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Grand canyon","description":"Wide width printed wallpapers, Grand canyon. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb.webp","https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg.webp","https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd.webp","https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ.webp","https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp.webp","https://static.pierrefrey.com/uploads/product/packshots/e000ec10-0653-4ee5-8ad2-7da3ad2136fa/jk23AB8ArTekaxs5hcAt.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb.webp,https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg.webp,https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd.webp,https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ.webp,https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp.webp,https://static.pierrefrey.com/uploads/product/packshots/e000ec10-0653-4ee5-8ad2-7da3ad2136fa/jk23AB8ArTekaxs5hcAt.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:11.035Z"}
+{"mfr_sku":"FP170001","pattern_name":"Wallpaper crespieres","color_name":"Bleu Ancien","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP170001-wallpaper-crespieres","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"67 cm / 26,37 inch","Repeat":"V: 32 cm - 12,59 inch | Half drop repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"67 cm / 26,37 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 32 cm - 12,59 inch | Half drop repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper crespieres","description":"Small width printed wallpapers, Wallpaper crespieres. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/89cd5b4c-082c-4335-8d4f-7c16cbe716e5/yHxY9BXQR18Pj14t9w3d.webp","https://static.pierrefrey.com/uploads/product/packshots/1404d905-f0ef-498a-b616-0144b913b877/NbZdR0oCar5c6QubPkBV.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/89cd5b4c-082c-4335-8d4f-7c16cbe716e5/yHxY9BXQR18Pj14t9w3d.webp,https://static.pierrefrey.com/uploads/product/packshots/1404d905-f0ef-498a-b616-0144b913b877/NbZdR0oCar5c6QubPkBV.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:11.819Z"}
+{"mfr_sku":"BP205002","pattern_name":"Wallpaper vermicule","color_name":"Ochre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP205002-wallpaper-vermicule","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,10 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 12 cm - 4,00 inch | V: 9 cm - 3,54 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Soaking time before hanging: maximum 2 minutes."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 12 cm - 4,00 inch | V: 9 cm - 3,54 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,10 mts","roll_length":null,"collection":"Wallpaper vermicule","description":"Small width printed wallpapers, Wallpaper vermicule. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/83dc8673-b844-458e-aae1-a97d7380f2b6/V0FKA2pCabcXygvXlLgi.webp","https://static.pierrefrey.com/uploads/product/packshots/b3b69585-8ed3-4b55-b785-327ac133c7e3/96pkrCnNU76p9EFqdbRh.webp","https://static.pierrefrey.com/uploads/product/packshots/2929a256-661d-43a1-8a87-f318aac0896b/DZa1lUNJ8hC81Txs97S6.webp","https://static.pierrefrey.com/uploads/product/packshots/dc8e8368-4575-4060-8e6e-cd0b22b7cd40/keaPWjDUvwHa79LK3yxa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/83dc8673-b844-458e-aae1-a97d7380f2b6/V0FKA2pCabcXygvXlLgi.webp,https://static.pierrefrey.com/uploads/product/packshots/b3b69585-8ed3-4b55-b785-327ac133c7e3/96pkrCnNU76p9EFqdbRh.webp,https://static.pierrefrey.com/uploads/product/packshots/2929a256-661d-43a1-8a87-f318aac0896b/DZa1lUNJ8hC81Txs97S6.webp,https://static.pierrefrey.com/uploads/product/packshots/dc8e8368-4575-4060-8e6e-cd0b22b7cd40/keaPWjDUvwHa79LK3yxa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:12.677Z"}
+{"mfr_sku":"FP971002","pattern_name":"Tehea","color_name":"Charbon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP971002-tehea","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","Width":"134 cm / 52,75 inch","Repeat":"H: 33 cm - 12,00 inch | V: 33 cm - 12,99 inch | Straight repeat","Weight":"310 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Notes":"Traditional printing technique","Information":"Panel effect"},"width":"134 cm / 52,75 inch","composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 33 cm - 12,00 inch | V: 33 cm - 12,99 inch | Straight repeat","weight":"310 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tehea","description":"Wide width printed wallpapers - Straws and similar materials, Tehea. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:13.406Z"}
+{"mfr_sku":"BP324002","pattern_name":"La route de la soie","color_name":"Ivoire","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP324002-la-route-de-la-soie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"280 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La route de la soie","description":"Plains & semi plains - Paperbacked fabrics, La route de la soie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp","https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp","https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp","https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp","https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp","https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp","https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp","https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp,https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp,https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp,https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp,https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp,https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp,https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp,https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:13.981Z"}
+{"mfr_sku":"FP786003","pattern_name":"Arlesienne","color_name":"Agave","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP786003-arlesienne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Arlesienne","description":"Small width printed wallpapers, Arlesienne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","https://static.pierrefrey.com/uploads/product/packshots/ec27716e-f91a-4215-b600-85e7b4961402/Pxz49wGzCTfN9gJzQccH.webp","https://static.pierrefrey.com/uploads/product/packshots/065100da-5ea5-4f01-9af4-e6a8e1397bfb/bCdgUaNskRc73diUe722.webp","https://static.pierrefrey.com/uploads/product/packshots/fe3cff35-bc90-4537-ba7f-6a379a84b390/icokPHHV8Lvq79JJc1wo.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp,https://static.pierrefrey.com/uploads/product/packshots/ec27716e-f91a-4215-b600-85e7b4961402/Pxz49wGzCTfN9gJzQccH.webp,https://static.pierrefrey.com/uploads/product/packshots/065100da-5ea5-4f01-9af4-e6a8e1397bfb/bCdgUaNskRc73diUe722.webp,https://static.pierrefrey.com/uploads/product/packshots/fe3cff35-bc90-4537-ba7f-6a379a84b390/icokPHHV8Lvq79JJc1wo.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:14.785Z"}
+{"mfr_sku":"FP861004","pattern_name":"Fontainebleau","color_name":"Marronnier","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP861004-fontainebleau","list_image":"https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 105 cm - 41,33 inch | Half drop repeat","Weight":"152 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 105 cm - 41,33 inch | Half drop repeat","weight":"152 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fontainebleau","description":"Wide width printed wallpapers, Fontainebleau. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","https://static.pierrefrey.com/uploads/product/packshots/389addbc-df47-4627-8876-3032ab336d70/ENQbvHNrGAEVgPykJYDI.webp","https://static.pierrefrey.com/uploads/product/packshots/6e004099-c9a6-4856-96f0-4bbc615a20a5/LYt3obu2Ou5QNDa6f4km.webp","https://static.pierrefrey.com/uploads/product/packshots/c403c251-7035-4233-8955-943cb69920ff/HDBF0scKtvbneoyd3OhM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp,https://static.pierrefrey.com/uploads/product/packshots/389addbc-df47-4627-8876-3032ab336d70/ENQbvHNrGAEVgPykJYDI.webp,https://static.pierrefrey.com/uploads/product/packshots/6e004099-c9a6-4856-96f0-4bbc615a20a5/LYt3obu2Ou5QNDa6f4km.webp,https://static.pierrefrey.com/uploads/product/packshots/c403c251-7035-4233-8955-943cb69920ff/HDBF0scKtvbneoyd3OhM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:15.514Z"}
+{"mfr_sku":"FP959002","pattern_name":"Belize","color_name":"Fusain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP959002-belize","list_image":"https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"146 cm / 57,48 inch","Repeat":"H: 146 cm - 57,00 inch | V: 117 cm - 46,06 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"146 cm / 57,48 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 146 cm - 57,00 inch | V: 117 cm - 46,06 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Belize","description":"Wide width printed wallpapers, Belize. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:16.328Z"}
+{"mfr_sku":"BP377001","pattern_name":"La voliere aux papillons","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP377001-la-voliere-aux-papillons","list_image":"https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"133 cm / 52,36 inch","Repeat":"H: 133 cm - 52,00 inch | V: 81 cm - 31,88 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"B9979PPBRAQ9"},"width":"133 cm / 52,36 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 133 cm - 52,00 inch | V: 81 cm - 31,88 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La voliere aux papillons","description":"Wide width printed wallpapers, La voliere aux papillons. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:17.229Z"}
+{"mfr_sku":"FP172001","pattern_name":"Wallpaper fleurs de mai","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP172001-wallpaper-fleurs-de-mai","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  5,45 mts","Backing":"PAPER","Composition":"-","Width":"59 cm / 23,22 inch","Repeat":"V: 30 cm - 11,81 inch | Half drop repeat","Weight":"252 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"59 cm / 23,22 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 30 cm - 11,81 inch | Half drop repeat","weight":"252 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  5,45 mts","roll_length":null,"collection":"Wallpaper fleurs de mai","description":"Small width printed wallpapers, Wallpaper fleurs de mai. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:17.998Z"}
+{"mfr_sku":"FP025002","pattern_name":"Alicia","color_name":"Galet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP025002-alicia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"H: 65 cm - 25,00 inch | V: 65 cm - 25,59 inch | Straight repeat","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY43"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 65 cm - 25,00 inch | V: 65 cm - 25,59 inch | Straight repeat","weight":"240 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Alicia","description":"Wide width printed wallpapers - Paperbacked fabrics, Alicia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:19.041Z"}
+{"mfr_sku":"FP770001","pattern_name":"Les singes savants","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP770001-les-singes-savants","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Artist":"Dessin Harrison Howard","Collaboration":"Maison Caspari","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"97 cm / 38,18 inch","Repeat":"H: 97 cm - 38,00 inch | V: 135 cm - 53,14 inch | Half drop repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness"},"width":"97 cm / 38,18 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 97 cm - 38,00 inch | V: 135 cm - 53,14 inch | Half drop repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les singes savants","description":"Wide width printed wallpapers - Vinyls, Les singes savants. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp","https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp","https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp","https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp","https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp","https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp","https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp","https://static.pierrefrey.com/uploads/product/packshots/290613ee-c487-42cd-a779-f43e5385d2fa/Veb3mjD7YLOQB90VzC0r.webp","https://static.pierrefrey.com/uploads/product/packshots/bff841c5-6af3-47eb-b7a2-477d14250ee1/4rwLR1Hw3Xrnwf8k0ZXa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp,https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp,https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp,https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp,https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp,https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp,https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp,https://static.pierrefrey.com/uploads/product/packshots/290613ee-c487-42cd-a779-f43e5385d2fa/Veb3mjD7YLOQB90VzC0r.webp,https://static.pierrefrey.com/uploads/product/packshots/bff841c5-6af3-47eb-b7a2-477d14250ee1/4rwLR1Hw3Xrnwf8k0ZXa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:19.776Z"}
+{"mfr_sku":"FP535002","pattern_name":"Nuances","color_name":"Pampa","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP535002-nuances","list_image":"https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Extra washable"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Nuances","description":"Small width printed wallpapers - Vinyls, Nuances. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp","https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp","https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp","https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp","https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp","https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp","https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp","https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp","https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp","https://static.pierrefrey.com/uploads/product/packshots/085ad0f4-823d-4773-bdf0-1fa968d7748d/Hww1hf3Wt0kVgcK6c7I4.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp,https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp,https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp,https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp,https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp,https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp,https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp,https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp,https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp,https://static.pierrefrey.com/uploads/product/packshots/085ad0f4-823d-4773-bdf0-1fa968d7748d/Hww1hf3Wt0kVgcK6c7I4.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:20.431Z"}
+{"mfr_sku":"FP185003","pattern_name":"Wallpaper erevan","color_name":"Delft Blue","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP185003-wallpaper-erevan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 39 cm - 15,35 inch | Straight repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 39 cm - 15,35 inch | Straight repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper erevan","description":"Small width printed wallpapers, Wallpaper erevan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:21.261Z"}
+{"mfr_sku":"FP047001","pattern_name":"Ukiyoe","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP047001-ukiyoe","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 173 cm - 68,11 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY44"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 173 cm - 68,11 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ukiyoe","description":"Wide width printed wallpapers, Ukiyoe. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","https://static.pierrefrey.com/uploads/product/packshots/502e9f9b-55f7-4804-8287-09ca02994b8e/cwqW4VDPJ74FAYvxcPS0.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp,https://static.pierrefrey.com/uploads/product/packshots/502e9f9b-55f7-4804-8287-09ca02994b8e/cwqW4VDPJ74FAYvxcPS0.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:22.185Z"}
+{"mfr_sku":"FP328004","pattern_name":"Mojito","color_name":"Café","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP328004-mojito","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"52 cm / 20,47 inch","Repeat":"V: 61 cm - 24,01 inch | Straight repeat","Weight":"195 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Notes":"Good lightfastness | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"V: 61 cm - 24,01 inch | Straight repeat","weight":"195 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Mojito","description":"Small width printed wallpapers, Mojito. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp","https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp","https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp","https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp","https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp","https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp","https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp","https://static.pierrefrey.com/uploads/product/packshots/a866cb9e-f5ad-42a1-8803-a2cd9e5698ef/9qPCLzUjqeRSd42OvUUs.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp,https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp,https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp,https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp,https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp,https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp,https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp,https://static.pierrefrey.com/uploads/product/packshots/a866cb9e-f5ad-42a1-8803-a2cd9e5698ef/9qPCLzUjqeRSd42OvUUs.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:22.824Z"}
+{"mfr_sku":"LP106001","pattern_name":"Madame elisabeth","color_name":"Tournesol","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP106001-madame-elisabeth","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 69 cm - 27,00 inch | V: 31 cm - 12,20 inch | Straight repeat","Weight":"140 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 69 cm - 27,00 inch | V: 31 cm - 12,20 inch | Straight repeat","weight":"140 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Madame elisabeth","description":"Small width printed wallpapers, Madame elisabeth. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/ff93dc8a-36da-4b1a-96ac-91431fa06b4c/QbGuy4QIWs7P7vU9Fl5v.webp","https://static.pierrefrey.com/uploads/product/packshots/76ce6cda-0f8f-4d56-b0e0-6f2d2c7e985b/A5ZqEmZJ8lDtzEBTAtft.webp","https://static.pierrefrey.com/uploads/product/packshots/1141d5d5-ac24-47a6-a310-93a9b3009820/gAcT2obJq0Qr4y5Sr2jv.webp","https://static.pierrefrey.com/uploads/product/packshots/86da4c60-5828-4c59-8b5e-cff8632a5a64/7i1IWSg5xGuqBqZobKTr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/ff93dc8a-36da-4b1a-96ac-91431fa06b4c/QbGuy4QIWs7P7vU9Fl5v.webp,https://static.pierrefrey.com/uploads/product/packshots/76ce6cda-0f8f-4d56-b0e0-6f2d2c7e985b/A5ZqEmZJ8lDtzEBTAtft.webp,https://static.pierrefrey.com/uploads/product/packshots/1141d5d5-ac24-47a6-a310-93a9b3009820/gAcT2obJq0Qr4y5Sr2jv.webp,https://static.pierrefrey.com/uploads/product/packshots/86da4c60-5828-4c59-8b5e-cff8632a5a64/7i1IWSg5xGuqBqZobKTr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:23.769Z"}
+{"mfr_sku":"FP053002","pattern_name":"Fuji","color_name":"Pierre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP053002-fuji","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Cotton","Width":"117 cm / 46,06 inch","Repeat":"H: 19 cm - 7,00 inch | V: 2 cm - 0,78 inch | Free match","Weight":"365 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY44"},"width":"117 cm / 46,06 inch","composition":"100 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 19 cm - 7,00 inch | V: 2 cm - 0,78 inch | Free match","weight":"365 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fuji","description":"Paperbacked fabrics, Fuji. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:24.598Z"}
+{"mfr_sku":"BP201002","pattern_name":"Wallpaper petit parc","color_name":"Nutmeg/Blue","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP201002-wallpaper-petit-parc","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"71 cm / 27,95 inch","Repeat":"V: 76 cm - 29,92 inch | Half drop repeat","Weight":"224 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"71 cm / 27,95 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 76 cm - 29,92 inch | Half drop repeat","weight":"224 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper petit parc","description":"Small width printed wallpapers, Wallpaper petit parc. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/da1091fa-5203-478a-813d-b2e0a0e9bcc4/wqfsdwp0UssJADh6p2QK.webp","https://static.pierrefrey.com/uploads/product/packshots/ce334241-728a-44c4-818d-170b3b333739/6EVBgXCBUayfYAsaouqO.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/da1091fa-5203-478a-813d-b2e0a0e9bcc4/wqfsdwp0UssJADh6p2QK.webp,https://static.pierrefrey.com/uploads/product/packshots/ce334241-728a-44c4-818d-170b3b333739/6EVBgXCBUayfYAsaouqO.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:25.352Z"}
+{"mfr_sku":"FP405015","pattern_name":"Zia","color_name":"Orage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP405015-zia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"188 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"188 gr / m²","certifications":"EUROCLASS C-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Zia","description":"Plains & semi plains - Paperbacked fabrics, Zia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp","https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp","https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp","https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp","https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp","https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp","https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp,https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp,https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp,https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp,https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp,https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp,https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:26.104Z"}
+{"mfr_sku":"FP534004","pattern_name":"Coban","color_name":"Cognac","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP534004-coban","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Extra washable"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Coban","description":"Small width printed wallpapers - Vinyls, Coban. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp","https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp","https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp","https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp","https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp","https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp","https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp","https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp","https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp,https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp,https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp,https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp,https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp,https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp,https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp,https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp,https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:26.770Z"}
+{"mfr_sku":"FP922002","pattern_name":"Cristina","color_name":"Cuivre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP922002-cristina","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"77 % Viscose - 23 % Linen","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"440 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"140 cm / 55,11 inch","composition":"77 % Viscose - 23 % Linen","material":"NON WOVEN","pattern_repeat":"Free match","weight":"440 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cristina","description":"Paperbacked fabrics, Cristina. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:27.493Z"}
+{"mfr_sku":"FP567001","pattern_name":"Fontaine et animaux","color_name":"Noir/Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP567001-fontaine-et-animaux","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Christian Astuguevieille","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"144 cm / 56,69 inch","Repeat":"H: 140 cm - 55,00 inch | V: 87 cm - 34,25 inch | Half drop repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"144 cm / 56,69 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 140 cm - 55,00 inch | V: 87 cm - 34,25 inch | Half drop repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fontaine et animaux","description":"Wide width printed wallpapers, Fontaine et animaux. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp","https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp","https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp","https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp","https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp","https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp","https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp","https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp","https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp","https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp","https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp","https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp","https://static.pierrefrey.com/uploads/product/packshots/2321a399-aeb8-4068-ac8e-246643bc88ec/gxw2xtWahMg1609tjlcE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ae6a133f-e845-4cdb-821b-847c8b4bb343/Lrrx2c4jFq8eHiorq5S2.webp,https://static.pierrefrey.com/uploads/product/packshots/0c12511f-9218-4270-ad3f-227411785646/dYfMuYj122Qvpd74UlPN.webp,https://static.pierrefrey.com/uploads/product/packshots/69c7bcb5-56e7-49da-9a30-37ac633277bc/KaFR1d5VDebvZyhFp8EA.webp,https://static.pierrefrey.com/uploads/product/packshots/05253c48-380a-4494-a410-f647745db83f/aNA7Ob3Vr0GFeY0IezOt.webp,https://static.pierrefrey.com/uploads/product/packshots/2fb007b5-8619-4f0e-8a7d-6e81fa86e336/HvICqLIIFT3Fogv3Tonx.webp,https://static.pierrefrey.com/uploads/product/packshots/77d1534b-e6b3-4b24-a045-94b70a7d1a37/3d86WzuFsptTgbZdd1EJ.webp,https://static.pierrefrey.com/uploads/product/packshots/31435b88-a978-440a-b667-5bb0eaa3f914/AZUzTuW2zbMruu8m6ttI.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba731e-ce6f-4ed5-901c-bdc2c83b7945/vHU8W7dpmYgnLnqcKVuM.webp,https://static.pierrefrey.com/uploads/product/packshots/8f6c94a4-06da-4332-9d76-81973c558fbe/JAN3ncmHHYuPtwf7SZaW.webp,https://static.pierrefrey.com/uploads/product/packshots/24fcd0dc-faa1-4606-9a38-45769750750c/iiNlwVT2EI3AtkQi3dF8.webp,https://static.pierrefrey.com/uploads/product/packshots/72e1fa43-1c89-4b5b-a54d-e910dd248eb2/eJuZyozNOrLpCfzLmuLP.webp,https://static.pierrefrey.com/uploads/product/packshots/589e6832-c3a4-41cd-b6c4-fd7e2df121f0/wSXochIW8wn5OofY8yjr.webp,https://static.pierrefrey.com/uploads/product/packshots/49fa43b2-9c59-470a-ae1b-f7058162904e/AlIOJhFM1xP9Ts5hDJRM.webp,https://static.pierrefrey.com/uploads/product/packshots/2321a399-aeb8-4068-ac8e-246643bc88ec/gxw2xtWahMg1609tjlcE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:28.282Z"}
+{"mfr_sku":"BP353004","pattern_name":"Therese","color_name":"Bleuet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP353004-therese","list_image":"https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"70 % Cotton - 30 % Polyester","Width":"140 cm / 55,11 inch","Repeat":"H: 28 cm - 11,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"330 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"B9979PPBRAQ9"},"width":"140 cm / 55,11 inch","composition":"70 % Cotton - 30 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 28 cm - 11,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"330 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Therese","description":"Wide width printed wallpapers - Paperbacked fabrics, Therese. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:29.325Z"}
+{"mfr_sku":"FP872004","pattern_name":"Mariinsky","color_name":"Peche","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP872004-mariinsky","list_image":"https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Book":"F9979PPFREY33"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Mariinsky","description":"Small width printed wallpapers, Mariinsky. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp,https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:30.095Z"}
+{"mfr_sku":"BP207002","pattern_name":"Wallpaper les muses et le lion","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP207002-wallpaper-les-muses-et-le-lion","list_image":"https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"71 cm / 27,95 inch","Repeat":"V: 74 cm - 29,13 inch | Straight repeat","Weight":"196 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"71 cm / 27,95 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 74 cm - 29,13 inch | Straight repeat","weight":"196 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper les muses et le lion","description":"Small width printed wallpapers, Wallpaper les muses et le lion. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:30.774Z"}
+{"mfr_sku":"FP064001","pattern_name":"Costa","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP064001-costa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"31 % Polyester - 26 % Cotton - 18 % Viscose - 17 % Polyamide - 6 % Acrylic - 2 % Linen","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"550 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Information":"Panel effect","Book":"F9979PPFREY45"},"width":"137 cm / 53,93 inch","composition":"31 % Polyester - 26 % Cotton - 18 % Viscose - 17 % Polyamide - 6 % Acrylic - 2 % Linen","material":"NON WOVEN","pattern_repeat":"Free match","weight":"550 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Costa","description":"Paperbacked fabrics, Costa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:31.692Z"}
+{"mfr_sku":"FP305001","pattern_name":"Calligraphie","color_name":"Marron","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP305001-calligraphie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns - Paperbacked fabrics - Embroideries","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"52 % Linen - 35 % Silk - 13 % Polyester","Width":"140 cm / 55,11 inch","Repeat":"H: 69 cm - 27,00 inch | Free match","Weight":"320 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable"},"width":"140 cm / 55,11 inch","composition":"52 % Linen - 35 % Silk - 13 % Polyester","material":"PAPER","pattern_repeat":"H: 69 cm - 27,00 inch | Free match","weight":"320 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Calligraphie","description":"Wide width printed wallpapers - Embossed patterns - Paperbacked fabrics - Embroideries, Calligraphie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp","https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp","https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp","https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp","https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp","https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp","https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp","https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp","https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp,https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp,https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp,https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp,https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp,https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp,https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp,https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp,https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:32.303Z"}
+{"mfr_sku":"FP990001","pattern_name":"Aristoloches","color_name":"Verdure","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP990001-aristoloches","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw_251x335_webp.webp","specs":{"Type":"Panoramic wallpapers - Printed wallpapers","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"86 cm / 33,85 inch","Repeat":"H: 172 cm - 67,00 inch | V: 300 cm - 118,11 inch","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Notes":"Sold as a complete artwork","Information":"1 roll = 2 panels"},"width":"86 cm / 33,85 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 172 cm - 67,00 inch | V: 300 cm - 118,11 inch","weight":"240 gr / m²","certifications":null,"sales_unit":"Available per panel","roll_length":null,"collection":"Aristoloches","description":"Panoramic wallpapers - Printed wallpapers, Aristoloches. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp","https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp","https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp","https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp","https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp","https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp","https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp","https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp","https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp","https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp","https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp,https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp,https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp,https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp,https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp,https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp,https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp,https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp,https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp,https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp,https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:33.109Z"}
+{"mfr_sku":"FP863013","pattern_name":"Sofia","color_name":"Citrus","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP863013-sofia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"490 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY39"},"width":"130 cm / 51,18 inch","composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"490 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sofia","description":"Plains & semi plains - Paperbacked fabrics, Sofia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:33.807Z"}
+{"mfr_sku":"FP980002","pattern_name":"Rangiroa","color_name":"Tropiques","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP980002-rangiroa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Artist":"Véronique Villaret","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"130 cm / 51,18 inch","Repeat":"H: 130 cm - 51,00 inch | V: 144 cm - 56,69 inch | Straight repeat","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A"},"width":"130 cm / 51,18 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 130 cm - 51,00 inch | V: 144 cm - 56,69 inch | Straight repeat","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Rangiroa","description":"Wide width printed wallpapers - Paperbacked fabrics, Rangiroa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","https://static.pierrefrey.com/uploads/product/packshots/69fa0a95-92d6-44b8-bed3-70b76af19bc3/E7qildJCBkbOr6yVzsUs.webp","https://static.pierrefrey.com/uploads/product/packshots/1c67a5ab-b4e7-4994-8bdf-6d0709dc9fab/dhvdj46WQjTGhRrOa1S5.webp","https://static.pierrefrey.com/uploads/product/packshots/c7de495d-55a4-4ed9-826e-5dfc0e96dcff/bJ6plgGBMpKmzp2YIQlA.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp,https://static.pierrefrey.com/uploads/product/packshots/69fa0a95-92d6-44b8-bed3-70b76af19bc3/E7qildJCBkbOr6yVzsUs.webp,https://static.pierrefrey.com/uploads/product/packshots/1c67a5ab-b4e7-4994-8bdf-6d0709dc9fab/dhvdj46WQjTGhRrOa1S5.webp,https://static.pierrefrey.com/uploads/product/packshots/c7de495d-55a4-4ed9-826e-5dfc0e96dcff/bJ6plgGBMpKmzp2YIQlA.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:34.645Z"}
+{"mfr_sku":"FP864003","pattern_name":"Corail magique","color_name":"Peche","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP864003-corail-magique","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"H: 90 cm - 35,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"205 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Corail magique","description":"Small width printed wallpapers - Paperbacked fabrics, Corail magique. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:35.304Z"}
+{"mfr_sku":"FP195003","pattern_name":"Coutances","color_name":"Wheat","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP195003-coutances","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 71 cm - 27,95 inch | Half drop repeat","Weight":"202 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 71 cm - 27,95 inch | Half drop repeat","weight":"202 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Coutances","description":"Small width printed wallpapers, Coutances. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:36.047Z"}
+{"mfr_sku":"FP055001","pattern_name":"Azuma","color_name":"Bambou","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP055001-azuma","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 127 cm - 50,00 inch | Straight repeat","Weight":"245 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY44"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 127 cm - 50,00 inch | Straight repeat","weight":"245 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Azuma","description":"Straws and similar materials - Printed wallpapers, Azuma. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:36.843Z"}
+{"mfr_sku":"BP349003","pattern_name":"Parvati","color_name":"Prairie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP349003-parvati","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ_335x251_webp.webp","specs":{"Type":"Embossed patterns - Paperbacked fabrics - Embroideries","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"63 % Linen - 26 % Viscose - 11 % Polyester","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 117 cm - 46,06 inch | Straight repeat","Weight":"455 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"B9979PPBRAQ9"},"width":"129 cm / 50,78 inch","composition":"63 % Linen - 26 % Viscose - 11 % Polyester","material":"PAPER","pattern_repeat":"H: 129 cm - 50,00 inch | V: 117 cm - 46,06 inch | Straight repeat","weight":"455 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Parvati","description":"Embossed patterns - Paperbacked fabrics - Embroideries, Parvati. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/54754d3d-e375-4740-9f49-6596df48d115/94SQpnZpYdfnDIDjd3Dc.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/54754d3d-e375-4740-9f49-6596df48d115/94SQpnZpYdfnDIDjd3Dc.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:37.742Z"}
+{"mfr_sku":"FP868001","pattern_name":"Tatiana","color_name":"Pollen","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP868001-tatiana","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"135 cm / 53,14 inch","Repeat":"H: 45 cm - 17,00 inch | V: 46 cm - 18,11 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY33"},"width":"135 cm / 53,14 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 45 cm - 17,00 inch | V: 46 cm - 18,11 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tatiana","description":"Wide width printed wallpapers, Tatiana. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","https://static.pierrefrey.com/uploads/product/packshots/c38450bd-a782-40eb-ade7-7cda4cfa41fb/JDjKjMLG0qL2cVspLlBh.webp","https://static.pierrefrey.com/uploads/product/packshots/7c50e6a6-13a6-4c16-b899-80aa3f1f17f6/mVnda9tI53gEPYhVqwa2.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp,https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp,https://static.pierrefrey.com/uploads/product/packshots/c38450bd-a782-40eb-ade7-7cda4cfa41fb/JDjKjMLG0qL2cVspLlBh.webp,https://static.pierrefrey.com/uploads/product/packshots/7c50e6a6-13a6-4c16-b899-80aa3f1f17f6/mVnda9tI53gEPYhVqwa2.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:38.359Z"}
+{"mfr_sku":"LP105002","pattern_name":"Batik raisin","color_name":"Poudre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP105002-batik-raisin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch | V: 28 cm - 11,02 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 34 cm - 13,00 inch | V: 28 cm - 11,02 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Batik raisin","description":"Small width printed wallpapers, Batik raisin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/3afc0252-d66b-4afd-8022-bff9a36d6f39/XRpmoxASGpsjgqGMziAU.webp","https://static.pierrefrey.com/uploads/product/packshots/ff44f57a-863a-4b0f-b27d-77ebdbb5402c/T8OZbxHa4H2bUYWtrcEa.webp","https://static.pierrefrey.com/uploads/product/packshots/12ff8228-639e-47d2-a5b9-bf4daa98caf0/gHtPai0fXE3tb9zXQPhx.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/3afc0252-d66b-4afd-8022-bff9a36d6f39/XRpmoxASGpsjgqGMziAU.webp,https://static.pierrefrey.com/uploads/product/packshots/ff44f57a-863a-4b0f-b27d-77ebdbb5402c/T8OZbxHa4H2bUYWtrcEa.webp,https://static.pierrefrey.com/uploads/product/packshots/12ff8228-639e-47d2-a5b9-bf4daa98caf0/gHtPai0fXE3tb9zXQPhx.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:39.222Z"}
+{"mfr_sku":"FP770002","pattern_name":"Les singes savants","color_name":"Noir","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP770002-les-singes-savants","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Artist":"Dessin Harrison Howard","Collaboration":"Maison Caspari","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"97 cm / 38,18 inch","Repeat":"H: 97 cm - 38,00 inch | V: 135 cm - 53,14 inch | Half drop repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness"},"width":"97 cm / 38,18 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 97 cm - 38,00 inch | V: 135 cm - 53,14 inch | Half drop repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les singes savants","description":"Wide width printed wallpapers - Vinyls, Les singes savants. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp","https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp","https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp","https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp","https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp","https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp","https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp","https://static.pierrefrey.com/uploads/product/packshots/290613ee-c487-42cd-a779-f43e5385d2fa/Veb3mjD7YLOQB90VzC0r.webp","https://static.pierrefrey.com/uploads/product/packshots/bff841c5-6af3-47eb-b7a2-477d14250ee1/4rwLR1Hw3Xrnwf8k0ZXa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b3f1b220-1d38-4f52-a47d-6b9cb7cd08e5/w25hwdvqSqpzCi5PteM2.webp,https://static.pierrefrey.com/uploads/product/packshots/ac4630aa-3699-4602-bbaa-f232b94966d6/x36rUhUEJCbgv2POcttt.webp,https://static.pierrefrey.com/uploads/product/packshots/74a5cb52-63dc-4508-b556-e3260b4d3e48/PKDAxFgiw72wu1wW0GfL.webp,https://static.pierrefrey.com/uploads/product/packshots/2dcd8871-320b-4456-86a0-683a2faf826a/cF1ctkJlDG5WCUu1hEz7.webp,https://static.pierrefrey.com/uploads/product/packshots/c5af7604-dbf8-4d16-ada3-9339dd9f9465/7uQebwlq9FuojzE3oTsa.webp,https://static.pierrefrey.com/uploads/product/packshots/0a387a81-3dfc-479b-9d83-3773529283c1/6isVRmiTiKHU7WROvYmc.webp,https://static.pierrefrey.com/uploads/product/packshots/1176dd99-9ea4-43bb-b6e5-8c9d36fe4ea9/yVNRr1biWnhbTPwmxy8z.webp,https://static.pierrefrey.com/uploads/product/packshots/290613ee-c487-42cd-a779-f43e5385d2fa/Veb3mjD7YLOQB90VzC0r.webp,https://static.pierrefrey.com/uploads/product/packshots/bff841c5-6af3-47eb-b7a2-477d14250ee1/4rwLR1Hw3Xrnwf8k0ZXa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:39.940Z"}
+{"mfr_sku":"FP892002","pattern_name":"Mirage","color_name":"Noir","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP892002-mirage","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b3fd82be-dd6e-4923-accd-19ffa2b7347f/pYnwQWm9bve6HGBO29XI_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Raffia","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"242 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect","Book":"F9979PPFREY32 | F9979PPFREY37"},"width":"86 cm / 33,85 inch","composition":"100 % Raffia","material":"NON WOVEN","pattern_repeat":"H: 86 cm - 33,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"242 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mirage","description":"Small width printed wallpapers - Straws and similar materials, Mirage. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b3fd82be-dd6e-4923-accd-19ffa2b7347f/pYnwQWm9bve6HGBO29XI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b3fd82be-dd6e-4923-accd-19ffa2b7347f/pYnwQWm9bve6HGBO29XI.webp","https://static.pierrefrey.com/uploads/product/packshots/183398ae-4f49-4888-9535-2c6788660ccf/ThZ7bsG32BIlIHGAlFHy.webp","https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp","https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp","https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp","https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp","https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b3fd82be-dd6e-4923-accd-19ffa2b7347f/pYnwQWm9bve6HGBO29XI.webp,https://static.pierrefrey.com/uploads/product/packshots/183398ae-4f49-4888-9535-2c6788660ccf/ThZ7bsG32BIlIHGAlFHy.webp,https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp,https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp,https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp,https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp,https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:40.615Z"}
+{"mfr_sku":"BP201003","pattern_name":"Wallpaper petit parc","color_name":"Aqua/Brown","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP201003-wallpaper-petit-parc","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"71 cm / 27,95 inch","Repeat":"V: 76 cm - 29,92 inch | Half drop repeat","Weight":"224 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"71 cm / 27,95 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 76 cm - 29,92 inch | Half drop repeat","weight":"224 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper petit parc","description":"Small width printed wallpapers, Wallpaper petit parc. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/da1091fa-5203-478a-813d-b2e0a0e9bcc4/wqfsdwp0UssJADh6p2QK.webp","https://static.pierrefrey.com/uploads/product/packshots/ce334241-728a-44c4-818d-170b3b333739/6EVBgXCBUayfYAsaouqO.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/da1091fa-5203-478a-813d-b2e0a0e9bcc4/wqfsdwp0UssJADh6p2QK.webp,https://static.pierrefrey.com/uploads/product/packshots/ce334241-728a-44c4-818d-170b3b333739/6EVBgXCBUayfYAsaouqO.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:41.404Z"}
+{"mfr_sku":"BP365005","pattern_name":"Pontchartrain coordonne","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP365005-pontchartrain-coordonne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 32 cm - 12,59 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 32 cm - 12,59 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Pontchartrain coordonne","description":"Small width printed wallpapers, Pontchartrain coordonne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/ff4f3828-a884-473e-b206-ef9fd2f3cb84/t3ploOwZhYx5Q9rzKAQh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/ff4f3828-a884-473e-b206-ef9fd2f3cb84/t3ploOwZhYx5Q9rzKAQh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:42.439Z"}
+{"mfr_sku":"FP198002","pattern_name":"Planisphere","color_name":"Persimmon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP198002-planisphere","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"67 cm / 26,37 inch","Repeat":"V: 96 cm - 37,79 inch | Half drop repeat","Weight":"191 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"67 cm / 26,37 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 96 cm - 37,79 inch | Half drop repeat","weight":"191 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Planisphere","description":"Small width printed wallpapers, Planisphere. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/a5857ea7-a2b6-4380-a475-98cb6cf14de4/d6YRk9vMDSfa65ol2SNY.webp","https://static.pierrefrey.com/uploads/product/packshots/9089cdc7-6241-4274-9992-e28a44595f2d/ruM0F7cvdbDSzkfg5KZY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/a5857ea7-a2b6-4380-a475-98cb6cf14de4/d6YRk9vMDSfa65ol2SNY.webp,https://static.pierrefrey.com/uploads/product/packshots/9089cdc7-6241-4274-9992-e28a44595f2d/ruM0F7cvdbDSzkfg5KZY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:43.184Z"}
+{"mfr_sku":"BP361004","pattern_name":"La discrete","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP361004-la-discrete","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"La discrete","description":"Small width printed wallpapers, La discrete. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:44.139Z"}
+{"mfr_sku":"W4764001","pattern_name":"Wallpaper dandy","color_name":"Red","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4764001-wallpaper-dandy","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 63 cm - 24,80 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 63 cm - 24,80 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper dandy","description":"Small width printed wallpapers, Wallpaper dandy. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:44.960Z"}
+{"mfr_sku":"FP932001","pattern_name":"Gisele","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP932001-gisele","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"62 % Cotton - 22 % Viscose - 16 % Polyester","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"350 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY36"},"width":"130 cm / 51,18 inch","composition":"62 % Cotton - 22 % Viscose - 16 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"350 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Gisele","description":"Plains & semi plains - Paperbacked fabrics, Gisele. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:45.815Z"}
+{"mfr_sku":"LP112001","pattern_name":"Mikado","color_name":"Ocre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP112001-mikado","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 62 cm - 24,40 inch | Half drop repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 68 cm - 26,00 inch | V: 62 cm - 24,40 inch | Half drop repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Mikado","description":"Small width printed wallpapers, Mikado. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/006a3921-ada9-4ac6-8d48-41e2d1ca2f5b/0qvlxJpyv5WqkG61uiNL.webp","https://static.pierrefrey.com/uploads/product/packshots/8b671afe-9d3d-454b-85a0-6e457ba788fa/I5jzTEWn7HrYf3Cws9CC.webp","https://static.pierrefrey.com/uploads/product/packshots/c2fa8d49-ccd4-4d25-a6bd-697b9687ce67/11UHwvh0gQj7y6tIrFnk.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/006a3921-ada9-4ac6-8d48-41e2d1ca2f5b/0qvlxJpyv5WqkG61uiNL.webp,https://static.pierrefrey.com/uploads/product/packshots/8b671afe-9d3d-454b-85a0-6e457ba788fa/I5jzTEWn7HrYf3Cws9CC.webp,https://static.pierrefrey.com/uploads/product/packshots/c2fa8d49-ccd4-4d25-a6bd-697b9687ce67/11UHwvh0gQj7y6tIrFnk.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:46.738Z"}
+{"mfr_sku":"FP640002","pattern_name":"Albertine","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP640002-albertine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"120 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"120 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Albertine","description":"Plains & semi plains - Paperbacked fabrics, Albertine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","https://static.pierrefrey.com/uploads/product/packshots/2176897f-e64b-45ce-a6f9-809c1d7e9e6a/Wayc0q7jYwSowYy4QBoX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp,https://static.pierrefrey.com/uploads/product/packshots/2176897f-e64b-45ce-a6f9-809c1d7e9e6a/Wayc0q7jYwSowYy4QBoX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:47.528Z"}
+{"mfr_sku":"FP446002","pattern_name":"Leo","color_name":"Indigo","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP446002-leo","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"PAPER","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 95 cm - 37,40 inch | Half drop repeat","Weight":"289 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Dry strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Stain and impact resistant","Book":"F9979PPFREY9"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"PAPER","pattern_repeat":"H: 70 cm - 27,00 inch | V: 95 cm - 37,40 inch | Half drop repeat","weight":"289 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Leo","description":"Small width printed wallpapers - Vinyls, Leo. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp","https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp","https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp","https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp","https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp","https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp","https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp","https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp","https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp","https://static.pierrefrey.com/uploads/product/packshots/577e6760-137d-4e49-adbf-4f8fcf2367cf/R7oYnGttWYTweSRMS43K.webp","https://static.pierrefrey.com/uploads/product/packshots/b47f09ea-8b15-4418-86d6-bda8b8f8c458/KQXy7RyB5kp98ZkmJmLf.webp","https://static.pierrefrey.com/uploads/product/packshots/16d2d01d-cc51-4985-89f7-bafb864d0d47/ft685jQVoYMCDy9BzJGO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3db4152-8b0f-4eb2-94e2-6f28939e70e2/xgRXKDAlKhaGP63L00Bd.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp,https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp,https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp,https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp,https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp,https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp,https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp,https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp,https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp,https://static.pierrefrey.com/uploads/product/packshots/577e6760-137d-4e49-adbf-4f8fcf2367cf/R7oYnGttWYTweSRMS43K.webp,https://static.pierrefrey.com/uploads/product/packshots/b47f09ea-8b15-4418-86d6-bda8b8f8c458/KQXy7RyB5kp98ZkmJmLf.webp,https://static.pierrefrey.com/uploads/product/packshots/16d2d01d-cc51-4985-89f7-bafb864d0d47/ft685jQVoYMCDy9BzJGO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3db4152-8b0f-4eb2-94e2-6f28939e70e2/xgRXKDAlKhaGP63L00Bd.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:48.215Z"}
+{"mfr_sku":"FP644001","pattern_name":"Chloe","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP644001-chloe","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"68 % Polyester - 18 % Linen - 11 % Cotton - 3 % Acrylic","Width":"140 cm / 55,11 inch","Repeat":"H: 72 cm - 28,00 inch | V: 58 cm - 22,83 inch | Free match","Weight":"510 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect"},"width":"140 cm / 55,11 inch","composition":"68 % Polyester - 18 % Linen - 11 % Cotton - 3 % Acrylic","material":"NON WOVEN","pattern_repeat":"H: 72 cm - 28,00 inch | V: 58 cm - 22,83 inch | Free match","weight":"510 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Chloe","description":"Paperbacked fabrics, Chloe. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:48.993Z"}
+{"mfr_sku":"W4516003","pattern_name":"Wallpaper gasaki","color_name":"Red Curry","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4516003-wallpaper-gasaki","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 49 cm - 19,29 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 49 cm - 19,29 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper gasaki","description":"Small width printed wallpapers, Wallpaper gasaki. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:49.779Z"}
+{"mfr_sku":"BP374001","pattern_name":"L arbre aux oiseaux","color_name":"Miel Et Turquoise","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP374001-l-arbre-aux-oiseaux","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Panoramic wallpapers","Sales Unit":"Full panoramic  200 cm x 300 cm ( 2 lengths 100 cm x 300 cm) -  78,74 in x 118,11 in( 2 lengths  39,37 in x 118,11 in)","Backing":"NON WOVEN","Composition":"-","Width":"100 cm / 39,37 inch","Repeat":"H: 200 cm - 78,00 inch | V: 300 cm - 118,11 inch","Weight":"135 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 2 panels"},"width":"100 cm / 39,37 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 200 cm - 78,00 inch | V: 300 cm - 118,11 inch","weight":"135 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  200 cm x 300 cm ( 2 lengths 100 cm x 300 cm) -  78,74 in x 118,11 in( 2 lengths  39,37 in x 118,11 in)","roll_length":null,"collection":"L arbre aux oiseaux","description":"Wide width printed wallpapers - Panoramic wallpapers, L arbre aux oiseaux. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/4e5ba74f-972c-47fc-b835-6ed82b6a2857/MTmh2RbdUm0ZckAYpWmM.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/b6e99830-821f-477b-841e-1a2b39de2bb2/ZYmYeFbhm6DCaVHPHGoI.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/4e5ba74f-972c-47fc-b835-6ed82b6a2857/MTmh2RbdUm0ZckAYpWmM.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/b6e99830-821f-477b-841e-1a2b39de2bb2/ZYmYeFbhm6DCaVHPHGoI.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/b6e99830-821f-477b-841e-1a2b39de2bb2/ZYmYeFbhm6DCaVHPHGoI.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:16:50.754Z"}
+{"mfr_sku":"FP779001","pattern_name":"Calanques","color_name":"Mediterranee","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP779001-calanques","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Atelier Buffile","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Calanques","description":"Wide width printed wallpapers, Calanques. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","https://static.pierrefrey.com/uploads/product/packshots/f264ea0c-1a40-4d15-ac6b-34e77304eca1/EMuUu2MWP1K3oCqAEGuu.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp,https://static.pierrefrey.com/uploads/product/packshots/f264ea0c-1a40-4d15-ac6b-34e77304eca1/EMuUu2MWP1K3oCqAEGuu.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:51.537Z"}
+{"mfr_sku":"FP475006","pattern_name":"Kimono","color_name":"Sous Bois","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP475006-kimono","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b858d4ec-2a07-4820-95e5-96d6efa4be23/orkUPtU4OlmQZ1G3bW47_335x251_webp.webp","specs":{"Type":"Vinyls - Plains & semi plains","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Extra washable | Stain and impact resistant"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Kimono","description":"Vinyls - Plains & semi plains, Kimono. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b858d4ec-2a07-4820-95e5-96d6efa4be23/orkUPtU4OlmQZ1G3bW47.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b858d4ec-2a07-4820-95e5-96d6efa4be23/orkUPtU4OlmQZ1G3bW47.webp","https://static.pierrefrey.com/uploads/product/packshots/c60eb097-969a-4cb2-98cf-78bd3dc5665a/NJaT5p30fzjrUlPC4pCM.webp","https://static.pierrefrey.com/uploads/product/packshots/f25bd3cf-fe96-4f9c-b1ac-116c7fdbdfeb/I77fwpVZHuKGPdljGcr7.webp","https://static.pierrefrey.com/uploads/product/packshots/f303a333-51de-451e-8867-04b1e6efbe4f/ricOYx8mhrMhux6CxAa0.webp","https://static.pierrefrey.com/uploads/product/packshots/97de0f96-cf5e-45ac-93a4-4b278418872e/MqLkk8UknSolm4ynNHoc.webp","https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp","https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp","https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp","https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp","https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b858d4ec-2a07-4820-95e5-96d6efa4be23/orkUPtU4OlmQZ1G3bW47.webp,https://static.pierrefrey.com/uploads/product/packshots/c60eb097-969a-4cb2-98cf-78bd3dc5665a/NJaT5p30fzjrUlPC4pCM.webp,https://static.pierrefrey.com/uploads/product/packshots/f25bd3cf-fe96-4f9c-b1ac-116c7fdbdfeb/I77fwpVZHuKGPdljGcr7.webp,https://static.pierrefrey.com/uploads/product/packshots/f303a333-51de-451e-8867-04b1e6efbe4f/ricOYx8mhrMhux6CxAa0.webp,https://static.pierrefrey.com/uploads/product/packshots/97de0f96-cf5e-45ac-93a4-4b278418872e/MqLkk8UknSolm4ynNHoc.webp,https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp,https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp,https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp,https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp,https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:52.209Z"}
+{"mfr_sku":"BP364002","pattern_name":"Les renoncules","color_name":"Bleu Tendre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP364002-les-renoncules","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 70 cm - 27,55 inch | Half drop repeat","Weight":"155 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 70 cm - 27,55 inch | Half drop repeat","weight":"155 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les renoncules","description":"Small width printed wallpapers, Les renoncules. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:53.089Z"}
+{"mfr_sku":"FP922001","pattern_name":"Cristina","color_name":"Nacre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP922001-cristina","list_image":"https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"77 % Viscose - 23 % Linen","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"440 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"140 cm / 55,11 inch","composition":"77 % Viscose - 23 % Linen","material":"NON WOVEN","pattern_repeat":"Free match","weight":"440 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cristina","description":"Paperbacked fabrics, Cristina. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:53.948Z"}
+{"mfr_sku":"FP071001","pattern_name":"Craquelin","color_name":"Ocre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP071001-craquelin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV_335x251_webp.webp","specs":{"Type":"Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"51 cm / 20,07 inch","Repeat":"H: 51 cm - 20,00 inch | Free match","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique","Book":"F9979PPFREY45"},"width":"51 cm / 20,07 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 51 cm - 20,00 inch | Free match","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Craquelin","description":"Printed wallpapers, Craquelin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:54.794Z"}
+{"mfr_sku":"FP862002","pattern_name":"Pentagrama","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP862002-pentagrama","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ba742fe8-140f-41b6-b23d-5038a2e4402b/9CBHGjihD4snZUnww3zR_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 50 cm - 19,68 inch | Straight repeat","Weight":"152 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 50 cm - 19,68 inch | Straight repeat","weight":"152 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Pentagrama","description":"Wide width printed wallpapers, Pentagrama. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ba742fe8-140f-41b6-b23d-5038a2e4402b/9CBHGjihD4snZUnww3zR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ba742fe8-140f-41b6-b23d-5038a2e4402b/9CBHGjihD4snZUnww3zR.webp","https://static.pierrefrey.com/uploads/product/packshots/6ffa13a8-59a8-4602-8eb6-8c400e735c78/jsiePU8ApHrk1sgMiCtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ba742fe8-140f-41b6-b23d-5038a2e4402b/9CBHGjihD4snZUnww3zR.webp,https://static.pierrefrey.com/uploads/product/packshots/6ffa13a8-59a8-4602-8eb6-8c400e735c78/jsiePU8ApHrk1sgMiCtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:55.583Z"}
+{"mfr_sku":"FP314002","pattern_name":"Indus tise","color_name":"Lin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP314002-indus-tise","list_image":"https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1_251x335_webp.webp","specs":{"Type":"End-on-end threads - Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Viscose","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 36 cm - 14,17 inch | Straight repeat","Weight":"264 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A"},"width":"52 cm / 20,47 inch","composition":"100 % Viscose","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 36 cm - 14,17 inch | Straight repeat","weight":"264 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Indus tise","description":"End-on-end threads - Small width printed wallpapers, Indus tise. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp","https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp","https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp","https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp","https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp","https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp","https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp","https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp","https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp","https://static.pierrefrey.com/uploads/product/packshots/1c277b8e-e00c-4ee7-870b-79ef08290cd1/xXBFZzJvHO0012GM6rSv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp,https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp,https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp,https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp,https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp,https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp,https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp,https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp,https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp,https://static.pierrefrey.com/uploads/product/packshots/1c277b8e-e00c-4ee7-870b-79ef08290cd1/xXBFZzJvHO0012GM6rSv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:56.178Z"}
+{"mfr_sku":"LP108001","pattern_name":"Plumettes","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP108001-plumettes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,10 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 22 cm - 8,00 inch | V: 16 cm - 6,29 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Soaking time before hanging: maximum 2 minutes.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 22 cm - 8,00 inch | V: 16 cm - 6,29 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,10 mts","roll_length":null,"collection":"Plumettes","description":"Small width printed wallpapers, Plumettes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/e7a711a7-a131-4f19-883b-92d4e3f32211/3wIYH3A0eoIi2ZS1cGMD.webp","https://static.pierrefrey.com/uploads/product/packshots/5b165095-ee1f-4680-a8bd-7c8b35ac81a4/y8FDTMAyyPm72A3nBx9R.webp","https://static.pierrefrey.com/uploads/product/packshots/69cd0d72-253c-4f75-85b8-e96f860e885d/p6zYvoHDyn9UX8A7BXsJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8346139f-52a5-4f65-832d-df894dde42cf/7U9DSjPeQxYW2afTiZtd.webp","https://static.pierrefrey.com/uploads/product/packshots/f29f25c3-55c9-4bf5-939a-a7268dd85aec/KSUsGEwp1aUrOQhRWhNP.webp","https://static.pierrefrey.com/uploads/product/packshots/218bf3fa-cdba-4af3-b0fd-a77563aab061/zTQRh9zPzW16Tvu9Ll5h.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/e7a711a7-a131-4f19-883b-92d4e3f32211/3wIYH3A0eoIi2ZS1cGMD.webp,https://static.pierrefrey.com/uploads/product/packshots/5b165095-ee1f-4680-a8bd-7c8b35ac81a4/y8FDTMAyyPm72A3nBx9R.webp,https://static.pierrefrey.com/uploads/product/packshots/69cd0d72-253c-4f75-85b8-e96f860e885d/p6zYvoHDyn9UX8A7BXsJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8346139f-52a5-4f65-832d-df894dde42cf/7U9DSjPeQxYW2afTiZtd.webp,https://static.pierrefrey.com/uploads/product/packshots/f29f25c3-55c9-4bf5-939a-a7268dd85aec/KSUsGEwp1aUrOQhRWhNP.webp,https://static.pierrefrey.com/uploads/product/packshots/218bf3fa-cdba-4af3-b0fd-a77563aab061/zTQRh9zPzW16Tvu9Ll5h.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:56.986Z"}
+{"mfr_sku":"LP107003","pattern_name":"Pommes de pin","color_name":"Dune","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP107003-pommes-de-pin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 23 cm - 9,00 inch | V: 61 cm - 24,01 inch | Straight repeat","Weight":"140 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 23 cm - 9,00 inch | V: 61 cm - 24,01 inch | Straight repeat","weight":"140 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Pommes de pin","description":"Small width printed wallpapers, Pommes de pin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/7ccd920b-6ab0-43d9-9fde-879b8ffdffa1/anYHQftsWM4vdhP5rR6H.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/7ccd920b-6ab0-43d9-9fde-879b8ffdffa1/anYHQftsWM4vdhP5rR6H.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:57.878Z"}
+{"mfr_sku":"FP651004","pattern_name":"Portofino","color_name":"Raphia","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP651004-portofino","list_image":"https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"60 % Viscose - 31 % Cotton - 9 % Linen","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"685 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect"},"width":"130 cm / 51,18 inch","composition":"60 % Viscose - 31 % Cotton - 9 % Linen","material":"NON WOVEN","pattern_repeat":"Free match","weight":"685 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Portofino","description":"Plains & semi plains - Paperbacked fabrics, Portofino. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:58.801Z"}
+{"mfr_sku":"FP169001","pattern_name":"Wallpaper espalier","color_name":"Prairie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP169001-wallpaper-espalier","list_image":"https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 35 cm - 13,77 inch | Straight repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 35 cm - 13,77 inch | Straight repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper espalier","description":"Small width printed wallpapers, Wallpaper espalier. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/f3bf5040-aec5-44de-bd69-3407eda9e06c/FiTd2F2A9JaDKvxmoNJE.webp","https://static.pierrefrey.com/uploads/product/packshots/c9805621-4831-437b-8645-138764e78a31/h4yduGvMHKLh1b4VETRf.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/f3bf5040-aec5-44de-bd69-3407eda9e06c/FiTd2F2A9JaDKvxmoNJE.webp,https://static.pierrefrey.com/uploads/product/packshots/c9805621-4831-437b-8645-138764e78a31/h4yduGvMHKLh1b4VETRf.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:16:59.564Z"}
+{"mfr_sku":"FP793024","pattern_name":"Nimes","color_name":"Aqua","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP793024-nimes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"Free match","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY27"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"205 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nimes","description":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics, Nimes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp","https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp","https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp","https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp","https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp","https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp","https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp","https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp","https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp,https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp,https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp,https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp,https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp,https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp,https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp,https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp,https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:00.616Z"}
+{"mfr_sku":"FP405018","pattern_name":"Zia","color_name":"Ardoise","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP405018-zia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"188 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"188 gr / m²","certifications":"EUROCLASS C-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Zia","description":"Plains & semi plains - Paperbacked fabrics, Zia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp","https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp","https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp","https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp","https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp","https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp","https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp,https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp,https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp,https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp,https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp,https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp,https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:01.401Z"}
+{"mfr_sku":"FP861002","pattern_name":"Fontainebleau","color_name":"Noisette","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP861002-fontainebleau","list_image":"https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 105 cm - 41,33 inch | Half drop repeat","Weight":"152 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 105 cm - 41,33 inch | Half drop repeat","weight":"152 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fontainebleau","description":"Wide width printed wallpapers, Fontainebleau. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","https://static.pierrefrey.com/uploads/product/packshots/389addbc-df47-4627-8876-3032ab336d70/ENQbvHNrGAEVgPykJYDI.webp","https://static.pierrefrey.com/uploads/product/packshots/6e004099-c9a6-4856-96f0-4bbc615a20a5/LYt3obu2Ou5QNDa6f4km.webp","https://static.pierrefrey.com/uploads/product/packshots/c403c251-7035-4233-8955-943cb69920ff/HDBF0scKtvbneoyd3OhM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp,https://static.pierrefrey.com/uploads/product/packshots/389addbc-df47-4627-8876-3032ab336d70/ENQbvHNrGAEVgPykJYDI.webp,https://static.pierrefrey.com/uploads/product/packshots/6e004099-c9a6-4856-96f0-4bbc615a20a5/LYt3obu2Ou5QNDa6f4km.webp,https://static.pierrefrey.com/uploads/product/packshots/c403c251-7035-4233-8955-943cb69920ff/HDBF0scKtvbneoyd3OhM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:02.690Z"}
+{"mfr_sku":"FP615001","pattern_name":"Magie japonaise","color_name":"Naturel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP615001-magie-japonaise","list_image":"https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics - Panoramic wallpapers","Sales Unit":"Full panoramic  280 cm x 300 cm ( 2 lengths 140 cm x 300 cm) - 110,23 in x 118,11 in( 2 lengths  55,11 in x 118,11 in)","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"140 cm / 55,11 inch","Repeat":"H: 280 cm - 110,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"345 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Notes":"Sold as a complete artwork","Information":"Panel effect | 1 roll = 2 panels"},"width":"140 cm / 55,11 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 280 cm - 110,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"345 gr / m²","certifications":null,"sales_unit":"Full panoramic  280 cm x 300 cm ( 2 lengths 140 cm x 300 cm) - 110,23 in x 118,11 in( 2 lengths  55,11 in x 118,11 in)","roll_length":null,"collection":"Magie japonaise","description":"Wide width printed wallpapers - Paperbacked fabrics - Panoramic wallpapers, Magie japonaise. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp","https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp","https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp","https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp","https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp","https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp","https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp","https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp","https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/be018f42-4813-4f88-8f1d-5c3644c95108/3BJDG7bOD4Q32NWMiY1t.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp,https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp,https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp,https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp,https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp,https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp,https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp,https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp,https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/be018f42-4813-4f88-8f1d-5c3644c95108/3BJDG7bOD4Q32NWMiY1t.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/be018f42-4813-4f88-8f1d-5c3644c95108/3BJDG7bOD4Q32NWMiY1t.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:17:03.769Z"}
+{"mfr_sku":"W4671A02","pattern_name":"Wallpaper chateaubriand","color_name":"Gold","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4671A02-wallpaper-chateaubriand","list_image":"https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 103 cm - 40,55 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 103 cm - 40,55 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper chateaubriand","description":"Small width printed wallpapers, Wallpaper chateaubriand. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:04.871Z"}
+{"mfr_sku":"FP021001","pattern_name":"Aelys","color_name":"Chantilly","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP021001-aelys","list_image":"https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"86 cm / 33,85 inch","Repeat":"H: 43 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"210 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY43"},"width":"86 cm / 33,85 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 43 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"210 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Aelys","description":"Paperbacked fabrics - Printed wallpapers, Aelys. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:05.893Z"}
+{"mfr_sku":"FP316001","pattern_name":"Gaya","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP316001-gaya","list_image":"https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"136 cm / 53,54 inch","Repeat":"V: 94 cm - 37,00 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"136 cm / 53,54 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"V: 94 cm - 37,00 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Gaya","description":"Wide width printed wallpapers, Gaya. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp","https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp","https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp","https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp","https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp","https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp","https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp","https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp","https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/bfc50073-8734-4964-be8b-607d40d8c12a/s7ngZsEm499YVAI5wVod.webp,https://static.pierrefrey.com/uploads/product/packshots/2017b62a-4390-46d3-b36d-04da71b4fed8/PjyF1TlMuLl63H20Janj.webp,https://static.pierrefrey.com/uploads/product/packshots/cbb19a99-4167-4431-a9b4-c388bac707d3/GArZemIUCH5kdg2FOqLR.webp,https://static.pierrefrey.com/uploads/product/packshots/65b845d5-7230-4e45-a69d-842e1a612ee6/xYxZscBdvOisniLGI0gG.webp,https://static.pierrefrey.com/uploads/product/packshots/ad796c54-91db-446c-914c-1bae1206b54c/G24B7mZROZl72myj4QFd.webp,https://static.pierrefrey.com/uploads/product/packshots/246c9ce4-1d3d-4c9c-8705-ce8951e3f8b4/onK4Fcdf0s6jpvVLa9Os.webp,https://static.pierrefrey.com/uploads/product/packshots/621925f7-80f0-4278-a550-041271bb48dd/JtJuE3qlgsRVOdKUs4vN.webp,https://static.pierrefrey.com/uploads/product/packshots/a3cae564-b22e-4ebf-826c-e341d368c62b/y8ObJjXCJCqnu2gKmwlS.webp,https://static.pierrefrey.com/uploads/product/packshots/a2032502-88f4-4d69-94c1-4025156b7944/HcvQmJievV8VfsEHMMdh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:06.630Z"}
+{"mfr_sku":"BP203002","pattern_name":"Wallpaper bengali","color_name":"Antique Red","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP203002-wallpaper-bengali","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  5,45 mts","Backing":"PAPER","Composition":"-","Width":"60 cm / 23,62 inch","Repeat":"V: 69 cm - 27,16 inch | Straight repeat","Weight":"204 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"60 cm / 23,62 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 69 cm - 27,16 inch | Straight repeat","weight":"204 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  5,45 mts","roll_length":null,"collection":"Wallpaper bengali","description":"Small width printed wallpapers, Wallpaper bengali. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/2b233c4d-1300-45ee-8566-08d70e3cb7a3/ocUOmplZEa0KisuQu4lP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/2b233c4d-1300-45ee-8566-08d70e3cb7a3/ocUOmplZEa0KisuQu4lP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:07.341Z"}
+{"mfr_sku":"LP105005","pattern_name":"Batik raisin","color_name":"Rouge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP105005-batik-raisin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch | V: 28 cm - 11,02 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 34 cm - 13,00 inch | V: 28 cm - 11,02 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Batik raisin","description":"Small width printed wallpapers, Batik raisin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/3afc0252-d66b-4afd-8022-bff9a36d6f39/XRpmoxASGpsjgqGMziAU.webp","https://static.pierrefrey.com/uploads/product/packshots/ff44f57a-863a-4b0f-b27d-77ebdbb5402c/T8OZbxHa4H2bUYWtrcEa.webp","https://static.pierrefrey.com/uploads/product/packshots/12ff8228-639e-47d2-a5b9-bf4daa98caf0/gHtPai0fXE3tb9zXQPhx.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/3afc0252-d66b-4afd-8022-bff9a36d6f39/XRpmoxASGpsjgqGMziAU.webp,https://static.pierrefrey.com/uploads/product/packshots/ff44f57a-863a-4b0f-b27d-77ebdbb5402c/T8OZbxHa4H2bUYWtrcEa.webp,https://static.pierrefrey.com/uploads/product/packshots/12ff8228-639e-47d2-a5b9-bf4daa98caf0/gHtPai0fXE3tb9zXQPhx.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:08.198Z"}
+{"mfr_sku":"LP106002","pattern_name":"Madame elisabeth","color_name":"Garance","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP106002-madame-elisabeth","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 69 cm - 27,00 inch | V: 31 cm - 12,20 inch | Straight repeat","Weight":"140 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 69 cm - 27,00 inch | V: 31 cm - 12,20 inch | Straight repeat","weight":"140 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Madame elisabeth","description":"Small width printed wallpapers, Madame elisabeth. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/ff93dc8a-36da-4b1a-96ac-91431fa06b4c/QbGuy4QIWs7P7vU9Fl5v.webp","https://static.pierrefrey.com/uploads/product/packshots/76ce6cda-0f8f-4d56-b0e0-6f2d2c7e985b/A5ZqEmZJ8lDtzEBTAtft.webp","https://static.pierrefrey.com/uploads/product/packshots/1141d5d5-ac24-47a6-a310-93a9b3009820/gAcT2obJq0Qr4y5Sr2jv.webp","https://static.pierrefrey.com/uploads/product/packshots/86da4c60-5828-4c59-8b5e-cff8632a5a64/7i1IWSg5xGuqBqZobKTr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/ff93dc8a-36da-4b1a-96ac-91431fa06b4c/QbGuy4QIWs7P7vU9Fl5v.webp,https://static.pierrefrey.com/uploads/product/packshots/76ce6cda-0f8f-4d56-b0e0-6f2d2c7e985b/A5ZqEmZJ8lDtzEBTAtft.webp,https://static.pierrefrey.com/uploads/product/packshots/1141d5d5-ac24-47a6-a310-93a9b3009820/gAcT2obJq0Qr4y5Sr2jv.webp,https://static.pierrefrey.com/uploads/product/packshots/86da4c60-5828-4c59-8b5e-cff8632a5a64/7i1IWSg5xGuqBqZobKTr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:09.099Z"}
+{"mfr_sku":"FP946001","pattern_name":"Toile de nantes intisse","color_name":"Sanguine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP946001-toile-de-nantes-intisse","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"127 cm / 50,00 inch","Repeat":"H: 42 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Flat screen printed","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"127 cm / 50,00 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 42 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Toile de nantes intisse","description":"Wide width printed wallpapers, Toile de nantes intisse. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp","https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp","https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp","https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp","https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp","https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp,https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp,https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp,https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp,https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp,https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:10.075Z"}
+{"mfr_sku":"FP638001","pattern_name":"Yola","color_name":"Racine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP638001-yola","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"75 % Silk - 25 % Viscose","Width":"136 cm / 53,54 inch","Repeat":"Free match","Weight":"420 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"136 cm / 53,54 inch","composition":"75 % Silk - 25 % Viscose","material":"NON WOVEN","pattern_repeat":"Free match","weight":"420 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Yola","description":"Paperbacked fabrics, Yola. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b43f9e-1677-4d15-8c27-8246f32ccd18/bUHRoYT0dB8TqqqRjTtb.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b43f9e-1677-4d15-8c27-8246f32ccd18/bUHRoYT0dB8TqqqRjTtb.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:10.982Z"}
+{"mfr_sku":"FP998001","pattern_name":"Eclipse","color_name":"Lune","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP998001-eclipse","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF_251x335_webp.webp","specs":{"Type":"Panoramic wallpapers - Printed wallpapers","Artist":"Caroline De Boissieu","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 272 cm - 107,00 inch | V: 300 cm - 118,11 inch","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS C-s1,d0","Notes":"Sold as a complete artwork","Information":"1 roll = 4 panels"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 272 cm - 107,00 inch | V: 300 cm - 118,11 inch","weight":"147 gr / m²","certifications":"EUROCLASS C-s1,d0","sales_unit":"Available per panel","roll_length":null,"collection":"Eclipse","description":"Panoramic wallpapers - Printed wallpapers, Eclipse. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp","https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp","https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp","https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp","https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp","https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp","https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp","https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp","https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp","https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp","https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp,https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp,https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp,https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp,https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp,https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp,https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp,https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp,https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp,https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp,https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:11.739Z"}
+{"mfr_sku":"FP965002","pattern_name":"Jardins japonais","color_name":"Nuit","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP965002-jardins-japonais","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 168 cm - 66,14 inch | Half drop repeat","Weight":"297 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 168 cm - 66,14 inch | Half drop repeat","weight":"297 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Jardins japonais","description":"Small width printed wallpapers - Straws and similar materials, Jardins japonais. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:12.623Z"}
+{"mfr_sku":"FP481001","pattern_name":"Magellan","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP481001-magellan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 170 cm - 66,92 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 170 cm - 66,92 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Magellan","description":"Wide width printed wallpapers, Magellan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:13.336Z"}
+{"mfr_sku":"FP545003","pattern_name":"Watsonia","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP545003-watsonia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c3a7e753-89c6-4816-8e67-87182797f0ae/y8JHvoGO1pLOPtMN4doV_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Watsonia","description":"Small width printed wallpapers, Watsonia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c3a7e753-89c6-4816-8e67-87182797f0ae/y8JHvoGO1pLOPtMN4doV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c3a7e753-89c6-4816-8e67-87182797f0ae/y8JHvoGO1pLOPtMN4doV.webp","https://static.pierrefrey.com/uploads/product/packshots/635bcf54-34f4-4924-a73b-77ce2b3b99a0/X64LKDXUY444jAfnx5rg.webp","https://static.pierrefrey.com/uploads/product/packshots/651e7b89-f90c-4d27-915c-2a6640178d48/Z5hmy8ajNkFB5g9Sk6er.webp","https://static.pierrefrey.com/uploads/product/packshots/cd301856-4b9f-45e5-8d89-4dd2f8832b7a/YbaxpDQdi6omQSD1ybMt.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c3a7e753-89c6-4816-8e67-87182797f0ae/y8JHvoGO1pLOPtMN4doV.webp,https://static.pierrefrey.com/uploads/product/packshots/635bcf54-34f4-4924-a73b-77ce2b3b99a0/X64LKDXUY444jAfnx5rg.webp,https://static.pierrefrey.com/uploads/product/packshots/651e7b89-f90c-4d27-915c-2a6640178d48/Z5hmy8ajNkFB5g9Sk6er.webp,https://static.pierrefrey.com/uploads/product/packshots/cd301856-4b9f-45e5-8d89-4dd2f8832b7a/YbaxpDQdi6omQSD1ybMt.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:13.977Z"}
+{"mfr_sku":"FP199002","pattern_name":"Saint hubert","color_name":"Leather","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP199002-saint-hubert","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 66 cm - 25,98 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 66 cm - 25,98 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Saint hubert","description":"Small width printed wallpapers, Saint hubert. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:14.946Z"}
+{"mfr_sku":"FP994001","pattern_name":"La vallee du mont blanc","color_name":"Ete","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP994001-la-vallee-du-mont-blanc","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP_335x251_webp.webp","specs":{"Type":"Panoramic wallpapers - Printed wallpapers","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"-","Width":"70 cm / 27,55 inch","Repeat":"H: 350 cm - 137,00 inch | V: 300 cm - 118,11 inch","Weight":"185 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 5 panels"},"width":"70 cm / 27,55 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 350 cm - 137,00 inch | V: 300 cm - 118,11 inch","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per panel","roll_length":null,"collection":"La vallee du mont blanc","description":"Panoramic wallpapers - Printed wallpapers, La vallee du mont blanc. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp","https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp","https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp","https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp","https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp","https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp","https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp","https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp","https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp","https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp","https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp,https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp,https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp,https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp,https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp,https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp,https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp,https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp,https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp,https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp,https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:15.807Z"}
+{"mfr_sku":"FP793006","pattern_name":"Nimes","color_name":"Calcaire","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP793006-nimes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"Free match","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY27"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"205 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nimes","description":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics, Nimes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp","https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp","https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp","https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp","https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp","https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp","https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp","https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp","https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp,https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp,https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp,https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp,https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp,https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp,https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp,https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp,https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:16.576Z"}
+{"mfr_sku":"BP334015","pattern_name":"Shiva","color_name":"Chanvre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334015-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:17.424Z"}
+{"mfr_sku":"BP364003","pattern_name":"Les renoncules","color_name":"Miel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP364003-les-renoncules","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 70 cm - 27,55 inch | Half drop repeat","Weight":"155 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 70 cm - 27,55 inch | Half drop repeat","weight":"155 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les renoncules","description":"Small width printed wallpapers, Les renoncules. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:18.349Z"}
+{"mfr_sku":"LP105004","pattern_name":"Batik raisin","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP105004-batik-raisin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch | V: 28 cm - 11,02 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 34 cm - 13,00 inch | V: 28 cm - 11,02 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Batik raisin","description":"Small width printed wallpapers, Batik raisin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/3afc0252-d66b-4afd-8022-bff9a36d6f39/XRpmoxASGpsjgqGMziAU.webp","https://static.pierrefrey.com/uploads/product/packshots/ff44f57a-863a-4b0f-b27d-77ebdbb5402c/T8OZbxHa4H2bUYWtrcEa.webp","https://static.pierrefrey.com/uploads/product/packshots/12ff8228-639e-47d2-a5b9-bf4daa98caf0/gHtPai0fXE3tb9zXQPhx.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/3afc0252-d66b-4afd-8022-bff9a36d6f39/XRpmoxASGpsjgqGMziAU.webp,https://static.pierrefrey.com/uploads/product/packshots/ff44f57a-863a-4b0f-b27d-77ebdbb5402c/T8OZbxHa4H2bUYWtrcEa.webp,https://static.pierrefrey.com/uploads/product/packshots/12ff8228-639e-47d2-a5b9-bf4daa98caf0/gHtPai0fXE3tb9zXQPhx.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:19.243Z"}
+{"mfr_sku":"FP649002","pattern_name":"Catalina","color_name":"Or","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP649002-catalina","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"280 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Catalina","description":"Paperbacked fabrics, Catalina. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:20.122Z"}
+{"mfr_sku":"FP986001","pattern_name":"Sous bois","color_name":"Ete","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP986001-sous-bois","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG_335x251_webp.webp","specs":{"Type":"Vinyls - Panoramic wallpapers - Printed wallpapers","Artist":"Gael Davrinche","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 392 cm - 154,00 inch | V: 300 cm - 118,11 inch","Weight":"450 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 4 panels"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 392 cm - 154,00 inch | V: 300 cm - 118,11 inch","weight":"450 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per panel","roll_length":null,"collection":"Sous bois","description":"Vinyls - Panoramic wallpapers - Printed wallpapers, Sous bois. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp","https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp","https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp","https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp","https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp","https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp","https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp","https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp","https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp","https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp","https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp,https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp,https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp,https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp,https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp,https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp,https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp,https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp,https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp,https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp,https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:20.867Z"}
+{"mfr_sku":"FP792001","pattern_name":"Clapotis","color_name":"Aquatique","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP792001-clapotis","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"H: 90 cm - 35,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"205 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Clapotis","description":"Small width printed wallpapers - Paperbacked fabrics, Clapotis. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:21.741Z"}
+{"mfr_sku":"FP475007","pattern_name":"Kimono","color_name":"Nacre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP475007-kimono","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c60eb097-969a-4cb2-98cf-78bd3dc5665a/NJaT5p30fzjrUlPC4pCM_335x251_webp.webp","specs":{"Type":"Vinyls - Plains & semi plains","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Extra washable | Stain and impact resistant"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Kimono","description":"Vinyls - Plains & semi plains, Kimono. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c60eb097-969a-4cb2-98cf-78bd3dc5665a/NJaT5p30fzjrUlPC4pCM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c60eb097-969a-4cb2-98cf-78bd3dc5665a/NJaT5p30fzjrUlPC4pCM.webp","https://static.pierrefrey.com/uploads/product/packshots/b858d4ec-2a07-4820-95e5-96d6efa4be23/orkUPtU4OlmQZ1G3bW47.webp","https://static.pierrefrey.com/uploads/product/packshots/f25bd3cf-fe96-4f9c-b1ac-116c7fdbdfeb/I77fwpVZHuKGPdljGcr7.webp","https://static.pierrefrey.com/uploads/product/packshots/f303a333-51de-451e-8867-04b1e6efbe4f/ricOYx8mhrMhux6CxAa0.webp","https://static.pierrefrey.com/uploads/product/packshots/97de0f96-cf5e-45ac-93a4-4b278418872e/MqLkk8UknSolm4ynNHoc.webp","https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp","https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp","https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp","https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp","https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c60eb097-969a-4cb2-98cf-78bd3dc5665a/NJaT5p30fzjrUlPC4pCM.webp,https://static.pierrefrey.com/uploads/product/packshots/b858d4ec-2a07-4820-95e5-96d6efa4be23/orkUPtU4OlmQZ1G3bW47.webp,https://static.pierrefrey.com/uploads/product/packshots/f25bd3cf-fe96-4f9c-b1ac-116c7fdbdfeb/I77fwpVZHuKGPdljGcr7.webp,https://static.pierrefrey.com/uploads/product/packshots/f303a333-51de-451e-8867-04b1e6efbe4f/ricOYx8mhrMhux6CxAa0.webp,https://static.pierrefrey.com/uploads/product/packshots/97de0f96-cf5e-45ac-93a4-4b278418872e/MqLkk8UknSolm4ynNHoc.webp,https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp,https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp,https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp,https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp,https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:22.385Z"}
+{"mfr_sku":"FP789001","pattern_name":"Patio exotique","color_name":"Roussillon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP789001-patio-exotique","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 67 cm - 26,37 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 67 cm - 26,37 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Patio exotique","description":"Wide width printed wallpapers, Patio exotique. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:23.236Z"}
+{"mfr_sku":"BP354003","pattern_name":"Les lilas","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP354003-les-lilas","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"134 cm / 52,75 inch","Repeat":"H: 90 cm - 35,00 inch | V: 43 cm - 16,92 inch | Half drop repeat","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"B9979PPBRAQ9"},"width":"134 cm / 52,75 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 43 cm - 16,92 inch | Half drop repeat","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les lilas","description":"Wide width printed wallpapers - Paperbacked fabrics, Les lilas. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/60147fb5-c257-48fd-af49-0da2f2daa526/wYsolUCXZmGR9W4X1qsp.webp","https://static.pierrefrey.com/uploads/product/packshots/c75d405d-2b0a-45c6-b12f-8338cd684c89/wTG3my3U0De9M9luNQ44.webp","https://static.pierrefrey.com/uploads/product/packshots/85b52622-95ae-4fb7-b535-9bba049af4b9/5c0Pd5niHSAMI4YjXPsq.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/60147fb5-c257-48fd-af49-0da2f2daa526/wYsolUCXZmGR9W4X1qsp.webp,https://static.pierrefrey.com/uploads/product/packshots/c75d405d-2b0a-45c6-b12f-8338cd684c89/wTG3my3U0De9M9luNQ44.webp,https://static.pierrefrey.com/uploads/product/packshots/85b52622-95ae-4fb7-b535-9bba049af4b9/5c0Pd5niHSAMI4YjXPsq.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:24.271Z"}
+{"mfr_sku":"FP197002","pattern_name":"Ming","color_name":"Cranberry","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP197002-ming","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 64 cm - 25,19 inch | Straight repeat","Weight":"202 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 64 cm - 25,19 inch | Straight repeat","weight":"202 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Ming","description":"Small width printed wallpapers, Ming. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/22fe4eb0-2653-42a7-8e8a-1d5fb33039a9/3zsr2jakqOU0eOiiRf8c.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/22fe4eb0-2653-42a7-8e8a-1d5fb33039a9/3zsr2jakqOU0eOiiRf8c.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:25.174Z"}
+{"mfr_sku":"FP793014","pattern_name":"Nimes","color_name":"Peche","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP793014-nimes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"Free match","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY27"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"205 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nimes","description":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics, Nimes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp","https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp","https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp","https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp","https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp","https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp","https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp","https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp","https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp,https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp,https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp,https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp,https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp,https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp,https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp,https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp,https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:26.109Z"}
+{"mfr_sku":"FP656001","pattern_name":"Princesse","color_name":"Ecru","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP656001-princesse","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"41 % Cotton - 27 % Linen - 18 % Viscose - 14 % Polyester","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"480 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect"},"width":"130 cm / 51,18 inch","composition":"41 % Cotton - 27 % Linen - 18 % Viscose - 14 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"480 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Princesse","description":"Plains & semi plains - Paperbacked fabrics, Princesse. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","https://static.pierrefrey.com/uploads/product/packshots/b96ae79d-559a-4da2-9e7d-359968e02078/1ZeLOaAVIYK9PmxI7Lc9.webp","https://static.pierrefrey.com/uploads/product/packshots/822217a4-07a4-4ce2-94c1-c0ed53da2e74/S9ftO6cXZcHIVZs6UBUC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp,https://static.pierrefrey.com/uploads/product/packshots/b96ae79d-559a-4da2-9e7d-359968e02078/1ZeLOaAVIYK9PmxI7Lc9.webp,https://static.pierrefrey.com/uploads/product/packshots/822217a4-07a4-4ce2-94c1-c0ed53da2e74/S9ftO6cXZcHIVZs6UBUC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:26.925Z"}
+{"mfr_sku":"FP069002","pattern_name":"Ceylan","color_name":"Ciel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP069002-ceylan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 48 cm - 18,89 inch | Half drop repeat","Weight":"165 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 48 cm - 18,89 inch | Half drop repeat","weight":"165 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Ceylan","description":"Small width printed wallpapers - Printed wallpapers, Ceylan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:27.658Z"}
+{"mfr_sku":"BP339001","pattern_name":"Les rizieres de shangbao","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP339001-les-rizieres-de-shangbao","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les rizieres de shangbao","description":"Wide width printed wallpapers, Les rizieres de shangbao. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/903b40c8-1d05-4e95-8731-19a1300ffef3/cYTl8XwTYEe1h4mz9p2l.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/903b40c8-1d05-4e95-8731-19a1300ffef3/cYTl8XwTYEe1h4mz9p2l.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:28.512Z"}
+{"mfr_sku":"FP992001","pattern_name":"L'oasis","color_name":"Tropical","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP992001-loasis","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ_251x335_webp.webp","specs":{"Type":"Vinyls - Panoramic wallpapers - Printed wallpapers","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 204 cm - 80,00 inch | V: 300 cm - 118,11 inch","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 3 panels"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 204 cm - 80,00 inch | V: 300 cm - 118,11 inch","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per panel","roll_length":null,"collection":"L'oasis","description":"Vinyls - Panoramic wallpapers - Printed wallpapers, L'oasis. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp","https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp","https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp","https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp","https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp","https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp","https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp","https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp","https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp","https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp","https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp,https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp,https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp,https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp,https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp,https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp,https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp,https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp,https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp,https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp,https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:29.200Z"}
+{"mfr_sku":"FP164003","pattern_name":"Wallpaper bazoches","color_name":"Corail Amande","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP164003-wallpaper-bazoches","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  3,66 mts","Backing":"PAPER","Composition":"-","Width":"78 cm / 30,70 inch","Repeat":"V: 61 cm - 24,01 inch | Straight repeat","Weight":"226 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"78 cm / 30,70 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 61 cm - 24,01 inch | Straight repeat","weight":"226 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  3,66 mts","roll_length":null,"collection":"Wallpaper bazoches","description":"Small width printed wallpapers, Wallpaper bazoches. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:29.956Z"}
+{"mfr_sku":"FP003001","pattern_name":"Les maldives","color_name":"Ecume","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP003001-les-maldives","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Fanny Lebon","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 131 cm - 51,57 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY41"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 131 cm - 51,57 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les maldives","description":"Wide width printed wallpapers, Les maldives. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:30.698Z"}
+{"mfr_sku":"FP893002","pattern_name":"Les poissons du nil","color_name":"Cafe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP893002-les-poissons-du-nil","list_image":"https://static.pierrefrey.com/uploads/product/packshots/c9bef904-f7fc-4b88-a07a-39b332fe078e/cDWJ7qfAVM79oLyZrR7s_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics","Artist":"Louis Barthelemy","Collaboration":"Musée du Louvre","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 87 cm - 34,25 inch | Straight repeat","Weight":"290 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY32 | F9979PPFREY37"},"width":"87 cm / 34,25 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 87 cm - 34,25 inch | Straight repeat","weight":"290 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les poissons du nil","description":"Small width printed wallpapers - Paperbacked fabrics, Les poissons du nil. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/c9bef904-f7fc-4b88-a07a-39b332fe078e/cDWJ7qfAVM79oLyZrR7s.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/c9bef904-f7fc-4b88-a07a-39b332fe078e/cDWJ7qfAVM79oLyZrR7s.webp","https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp","https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp","https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp","https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp","https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/c9bef904-f7fc-4b88-a07a-39b332fe078e/cDWJ7qfAVM79oLyZrR7s.webp,https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp,https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp,https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp,https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp,https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:31.454Z"}
+{"mfr_sku":"LP111004","pattern_name":"Les lions","color_name":"Amande","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP111004-les-lions","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"64 cm / 25,19 inch","Repeat":"H: 64 cm - 25,00 inch | V: 110 cm - 43,30 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"64 cm / 25,19 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 64 cm - 25,00 inch | V: 110 cm - 43,30 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Les lions","description":"Small width printed wallpapers, Les lions. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7ca31d75-cab7-45fb-8832-58a94f9af14e/uwNAgSh41Qy1PmKM3C2Y.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7ca31d75-cab7-45fb-8832-58a94f9af14e/uwNAgSh41Qy1PmKM3C2Y.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:32.399Z"}
+{"mfr_sku":"LP107002","pattern_name":"Pommes de pin","color_name":"CrèMe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP107002-pommes-de-pin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 23 cm - 9,00 inch | V: 61 cm - 24,01 inch | Straight repeat","Weight":"140 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 23 cm - 9,00 inch | V: 61 cm - 24,01 inch | Straight repeat","weight":"140 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Pommes de pin","description":"Small width printed wallpapers, Pommes de pin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/7ccd920b-6ab0-43d9-9fde-879b8ffdffa1/anYHQftsWM4vdhP5rR6H.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/7ccd920b-6ab0-43d9-9fde-879b8ffdffa1/anYHQftsWM4vdhP5rR6H.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:33.261Z"}
+{"mfr_sku":"FP784001","pattern_name":"La toile du peintre","color_name":"Origina","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP784001-la-toile-du-peintre","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics","Artist":"Heather Chontos","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"85 cm / 33,46 inch","Repeat":"H: 85 cm - 33,00 inch | V: 230 cm - 90,55 inch | Half drop repeat","Weight":"265 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness"},"width":"85 cm / 33,46 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 85 cm - 33,00 inch | V: 230 cm - 90,55 inch | Half drop repeat","weight":"265 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La toile du peintre","description":"Small width printed wallpapers - Paperbacked fabrics, La toile du peintre. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","https://static.pierrefrey.com/uploads/product/packshots/5a341a58-712b-4c73-ba37-475ecf164598/JzuQPvhwnIfaZKe7sfTT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp,https://static.pierrefrey.com/uploads/product/packshots/5a341a58-712b-4c73-ba37-475ecf164598/JzuQPvhwnIfaZKe7sfTT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:33.956Z"}
+{"mfr_sku":"BP334019","pattern_name":"Shiva","color_name":"Sauge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334019-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:34.696Z"}
+{"mfr_sku":"FP936001","pattern_name":"Sven","color_name":"Neige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP936001-sven","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"H: 90 cm - 35,00 inch | V: 32 cm - 12,59 inch | Straight repeat","Weight":"248 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique | Raised pattern","Book":"F9979PPFREY36"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 32 cm - 12,59 inch | Straight repeat","weight":"248 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sven","description":"Wide width printed wallpapers - Embossed patterns, Sven. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:35.606Z"}
+{"mfr_sku":"FP818001","pattern_name":"Encyclopedie","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP818001-encyclopedie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 133 cm - 52,36 inch | Half drop repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY28"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 133 cm - 52,36 inch | Half drop repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Encyclopedie","description":"Wide width printed wallpapers, Encyclopedie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp","https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp","https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp","https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp","https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp","https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp","https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp","https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp","https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp,https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp,https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp,https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp,https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp,https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp,https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp,https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp,https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:36.408Z"}
+{"mfr_sku":"W4516001","pattern_name":"Wallpaper gasaki","color_name":"Lime Green","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4516001-wallpaper-gasaki","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 49 cm - 19,29 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 49 cm - 19,29 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper gasaki","description":"Small width printed wallpapers, Wallpaper gasaki. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:37.287Z"}
+{"mfr_sku":"FP479004","pattern_name":"Sonora","color_name":"Sable Rose","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP479004-sonora","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 91 cm - 35,00 inch | V: 73 cm - 28,74 inch | Half drop repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY13"},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 91 cm - 35,00 inch | V: 73 cm - 28,74 inch | Half drop repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sonora","description":"Wide width printed wallpapers, Sonora. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:37.942Z"}
+{"mfr_sku":"FP433001","pattern_name":"Masai mara","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP433001-masai-mara","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY9"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Masai mara","description":"Wide width printed wallpapers, Masai mara. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp","https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp","https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp","https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp","https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp","https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp","https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp","https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp","https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp,https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp,https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp,https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp,https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp,https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp,https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp,https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp,https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:38.683Z"}
+{"mfr_sku":"FP018001","pattern_name":"Alessio","color_name":"Nacre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP018001-alessio","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"50 % Viscose - 50 % Linen","Width":"140 cm / 55,11 inch","Weight":"300 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"140 cm / 55,11 inch","composition":"50 % Viscose - 50 % Linen","material":"NON WOVEN","pattern_repeat":null,"weight":"300 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Alessio","description":"Paperbacked fabrics, Alessio. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:39.393Z"}
+{"mfr_sku":"FP438001","pattern_name":"Bonne peche","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP438001-bonne-peche","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 79 cm - 31,10 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY9"},"width":"134 cm / 52,75 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 79 cm - 31,10 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Bonne peche","description":"Wide width printed wallpapers, Bonne peche. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp","https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp","https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp","https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp","https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp","https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp","https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp","https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp","https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp","https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp","https://static.pierrefrey.com/uploads/product/packshots/238cf907-7329-491b-9d59-b27f47e02b8c/MfVt1UqVIeFpQcQgMe5a.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp,https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp,https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp,https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp,https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp,https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp,https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp,https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp,https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp,https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp,https://static.pierrefrey.com/uploads/product/packshots/238cf907-7329-491b-9d59-b27f47e02b8c/MfVt1UqVIeFpQcQgMe5a.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:40.054Z"}
+{"mfr_sku":"BP206001","pattern_name":"Wallpaper la fontaine","color_name":"Charcoal/Taupe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP206001-wallpaper-la-fontaine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 50 cm - 19,68 inch | Straight repeat","Weight":"174 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 50 cm - 19,68 inch | Straight repeat","weight":"174 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper la fontaine","description":"Small width printed wallpapers, Wallpaper la fontaine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:40.816Z"}
+{"mfr_sku":"FP531001","pattern_name":"Tenere","color_name":"Ocre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP531001-tenere","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 32 cm - 12,59 inch | Straight repeat","Weight":"520 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","Notes":"Flame retardant backing | Extra washable"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 32 cm - 12,59 inch | Straight repeat","weight":"520 gr / m²","certifications":"ASTM E84 Class A | EUROCLASS C-s2,d0","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tenere","description":"Small width printed wallpapers - Vinyls, Tenere. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp","https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp","https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp","https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp","https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp","https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp","https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp","https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp","https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp,https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp,https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp,https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp,https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp,https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp,https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp,https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp,https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:41.490Z"}
+{"mfr_sku":"BP334003","pattern_name":"Shiva","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334003-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:42.233Z"}
+{"mfr_sku":"FP960002","pattern_name":"Ko tao","color_name":"Aqua","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP960002-ko-tao","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"132 cm / 51,96 inch","Repeat":"H: 132 cm - 51,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"200 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness | Raised pattern"},"width":"132 cm / 51,96 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 132 cm - 51,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"200 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ko tao","description":"Wide width printed wallpapers - Embossed patterns, Ko tao. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:43.069Z"}
+{"mfr_sku":"FP485001","pattern_name":"Jardins parisiens","color_name":"Vert Jardin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP485001-jardins-parisiens","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Marin Montagut","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 136 cm - 53,54 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY13"},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 136 cm - 53,54 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Jardins parisiens","description":"Wide width printed wallpapers, Jardins parisiens. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:43.713Z"}
+{"mfr_sku":"FP549001","pattern_name":"Jalapao","color_name":"Fusain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP549001-jalapao","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cd301856-4b9f-45e5-8d89-4dd2f8832b7a/YbaxpDQdi6omQSD1ybMt_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 129 cm - 50,78 inch | Straight repeat","Weight":"157 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 129 cm - 50,78 inch | Straight repeat","weight":"157 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Jalapao","description":"Wide width printed wallpapers, Jalapao. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cd301856-4b9f-45e5-8d89-4dd2f8832b7a/YbaxpDQdi6omQSD1ybMt.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cd301856-4b9f-45e5-8d89-4dd2f8832b7a/YbaxpDQdi6omQSD1ybMt.webp","https://static.pierrefrey.com/uploads/product/packshots/635bcf54-34f4-4924-a73b-77ce2b3b99a0/X64LKDXUY444jAfnx5rg.webp","https://static.pierrefrey.com/uploads/product/packshots/651e7b89-f90c-4d27-915c-2a6640178d48/Z5hmy8ajNkFB5g9Sk6er.webp","https://static.pierrefrey.com/uploads/product/packshots/c3a7e753-89c6-4816-8e67-87182797f0ae/y8JHvoGO1pLOPtMN4doV.webp","https://static.pierrefrey.com/uploads/product/packshots/b01e0782-304d-49c6-a33e-4dc4ecc1e0ab/CRk2uxVeWUZIOYhRQ7Oh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cd301856-4b9f-45e5-8d89-4dd2f8832b7a/YbaxpDQdi6omQSD1ybMt.webp,https://static.pierrefrey.com/uploads/product/packshots/635bcf54-34f4-4924-a73b-77ce2b3b99a0/X64LKDXUY444jAfnx5rg.webp,https://static.pierrefrey.com/uploads/product/packshots/651e7b89-f90c-4d27-915c-2a6640178d48/Z5hmy8ajNkFB5g9Sk6er.webp,https://static.pierrefrey.com/uploads/product/packshots/c3a7e753-89c6-4816-8e67-87182797f0ae/y8JHvoGO1pLOPtMN4doV.webp,https://static.pierrefrey.com/uploads/product/packshots/b01e0782-304d-49c6-a33e-4dc4ecc1e0ab/CRk2uxVeWUZIOYhRQ7Oh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:44.393Z"}
+{"mfr_sku":"FP928001","pattern_name":"Nea","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP928001-nea","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"58 % Polyester - 40 % Viscose - 2 % Cotton","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"497 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"58 % Polyester - 40 % Viscose - 2 % Cotton","material":"NON WOVEN","pattern_repeat":"Free match","weight":"497 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nea","description":"Paperbacked fabrics, Nea. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:45.345Z"}
+{"mfr_sku":"BP380001","pattern_name":"Jardin de bagatelle","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP380001-jardin-de-bagatelle","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 68 cm - 26,00 inch | V: 118 cm - 46,45 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"B9979PPBRAQ9"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 118 cm - 46,45 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Jardin de bagatelle","description":"Wide width printed wallpapers, Jardin de bagatelle. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:46.200Z"}
+{"mfr_sku":"FP957001","pattern_name":"Lucille","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP957001-lucille","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 163 cm - 64,17 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 163 cm - 64,17 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Lucille","description":"Wide width printed wallpapers, Lucille. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/76974ed4-a7aa-4a20-a85a-751a44112bcc/OzbMQHqFs9j3Fc2MYfuZ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/76974ed4-a7aa-4a20-a85a-751a44112bcc/OzbMQHqFs9j3Fc2MYfuZ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:46.992Z"}
+{"mfr_sku":"FP877001","pattern_name":"Pavlova","color_name":"Capucine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP877001-pavlova","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"100 cm / 39,37 inch","Repeat":"H: 100 cm - 39,00 inch | V: 65 cm - 25,59 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY33"},"width":"100 cm / 39,37 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 100 cm - 39,00 inch | V: 65 cm - 25,59 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Pavlova","description":"Wide width printed wallpapers, Pavlova. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp,https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:47.740Z"}
+{"mfr_sku":"BP363005","pattern_name":"Marigold","color_name":"Piment","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP363005-marigold","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 61 cm - 24,01 inch | Straight repeat","Weight":"-","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 61 cm - 24,01 inch | Straight repeat","weight":"-","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Marigold","description":"Small width printed wallpapers, Marigold. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:48.693Z"}
+{"mfr_sku":"BP327001","pattern_name":"Les ombrelles rayure","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP327001-les-ombrelles-rayure","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 1 cm - | Free match","Weight":"190 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 1 cm - | Free match","weight":"190 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les ombrelles rayure","description":"Small width printed wallpapers, Les ombrelles rayure. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:49.466Z"}
+{"mfr_sku":"FP565002","pattern_name":"Tampa","color_name":"Argile","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP565002-tampa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 80 cm - 31,49 inch | Straight repeat","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 80 cm - 31,49 inch | Straight repeat","weight":"460 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Tampa","description":"Small width printed wallpapers - Vinyls, Tampa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp","https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp","https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp","https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp","https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp","https://static.pierrefrey.com/uploads/product/packshots/df9f729e-3459-481e-9ff4-33eb57a2bbaf/TtWUkFZPTdKTpWIvHoQY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ce8e3b88-b4c2-4ae4-950d-20e932249ac1/QarXxqpb0BfpMi8O7x3p.webp,https://static.pierrefrey.com/uploads/product/packshots/899e9250-3804-4337-b984-5c0080cf6643/2XSbGePDVUqPHxTC3DyO.webp,https://static.pierrefrey.com/uploads/product/packshots/7e51fff5-f0f5-41b2-b74f-190348618844/TIq4GgSZ1E9cmZI5ZFso.webp,https://static.pierrefrey.com/uploads/product/packshots/5edb2c4a-53f3-4c31-b9a1-93013983b7d8/UpLDGQHpQXOflZ5ZYe8j.webp,https://static.pierrefrey.com/uploads/product/packshots/83f3916d-1bcb-44e6-867e-9ce9112886b4/7SjzpBSohkqKwnb1nFB8.webp,https://static.pierrefrey.com/uploads/product/packshots/df9f729e-3459-481e-9ff4-33eb57a2bbaf/TtWUkFZPTdKTpWIvHoQY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:50.239Z"}
+{"mfr_sku":"FP840003","pattern_name":"Nids jolis","color_name":"Sous-Bois","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP840003-nids-jolis","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 91 cm - 35,00 inch | V: 66 cm - 25,98 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 91 cm - 35,00 inch | V: 66 cm - 25,98 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nids jolis","description":"Wide width printed wallpapers, Nids jolis. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:51.048Z"}
+{"mfr_sku":"BP334023","pattern_name":"Shiva","color_name":"Biche","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334023-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:51.856Z"}
+{"mfr_sku":"BP346001","pattern_name":"Indira","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP346001-indira","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"H: 65 cm - 25,00 inch | V: 145 cm - 57,08 inch | Straight repeat","Weight":"325 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ9"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 65 cm - 25,00 inch | V: 145 cm - 57,08 inch | Straight repeat","weight":"325 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Indira","description":"Wide width printed wallpapers - Paperbacked fabrics, Indira. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/2176897f-e64b-45ce-a6f9-809c1d7e9e6a/Wayc0q7jYwSowYy4QBoX.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/2176897f-e64b-45ce-a6f9-809c1d7e9e6a/Wayc0q7jYwSowYy4QBoX.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:52.761Z"}
+{"mfr_sku":"FP804003","pattern_name":"Designer dogs","color_name":"Corde","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP804003-designer-dogs","list_image":"https://static.pierrefrey.com/uploads/product/packshots/cfc76a0e-5041-436c-80e1-e56c05b327dc/hQzn1gkg8RYD0HkXYFu6_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Artist":"Ken Fulk","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"H: 90 cm - 35,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"245 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Book":"F9979PPFREY30"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 90 cm - 35,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"245 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Designer dogs","description":"Wide width printed wallpapers - Embossed patterns, Designer dogs. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/cfc76a0e-5041-436c-80e1-e56c05b327dc/hQzn1gkg8RYD0HkXYFu6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/cfc76a0e-5041-436c-80e1-e56c05b327dc/hQzn1gkg8RYD0HkXYFu6.webp","https://static.pierrefrey.com/uploads/product/packshots/87fede71-35aa-49e9-bf4b-684b484f8552/lhfOvuAvrYhb7MAGjOnk.webp","https://static.pierrefrey.com/uploads/product/packshots/f39ca6ff-d584-46f8-b97f-da80253f7fa7/1Uoob8yB9rNAoOjLU8Mk.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/cfc76a0e-5041-436c-80e1-e56c05b327dc/hQzn1gkg8RYD0HkXYFu6.webp,https://static.pierrefrey.com/uploads/product/packshots/87fede71-35aa-49e9-bf4b-684b484f8552/lhfOvuAvrYhb7MAGjOnk.webp,https://static.pierrefrey.com/uploads/product/packshots/f39ca6ff-d584-46f8-b97f-da80253f7fa7/1Uoob8yB9rNAoOjLU8Mk.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:53.337Z"}
+{"mfr_sku":"FP816001","pattern_name":"Les ballerines d'esther & romane","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP816001-les-ballerines-desther-romane","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 60 cm - 23,62 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY28"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 60 cm - 23,62 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les ballerines d'esther & romane","description":"Wide width printed wallpapers, Les ballerines d'esther & romane. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp","https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp","https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp","https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp","https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp","https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp","https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp","https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp","https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp,https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp,https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp,https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp,https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp,https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp,https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp,https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp,https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:53.992Z"}
+{"mfr_sku":"FP789002","pattern_name":"Patio exotique","color_name":"Aqua","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP789002-patio-exotique","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 67 cm - 26,37 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 67 cm - 26,37 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Patio exotique","description":"Wide width printed wallpapers, Patio exotique. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:54.836Z"}
+{"mfr_sku":"FP022001","pattern_name":"Priam","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP022001-priam","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds_251x335_webp.webp","specs":{"Type":"End-on-end threads - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 42 cm - 16,53 inch | Half drop repeat","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY43"},"width":"87 cm / 34,25 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 42 cm - 16,53 inch | Half drop repeat","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Priam","description":"End-on-end threads - Printed wallpapers, Priam. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:55.731Z"}
+{"mfr_sku":"FP064003","pattern_name":"Costa","color_name":"Lagon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP064003-costa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"31 % Polyester - 26 % Cotton - 18 % Viscose - 17 % Polyamide - 6 % Acrylic - 2 % Linen","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"550 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Information":"Panel effect","Book":"F9979PPFREY45"},"width":"137 cm / 53,93 inch","composition":"31 % Polyester - 26 % Cotton - 18 % Viscose - 17 % Polyamide - 6 % Acrylic - 2 % Linen","material":"NON WOVEN","pattern_repeat":"Free match","weight":"550 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Costa","description":"Paperbacked fabrics, Costa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:56.491Z"}
+{"mfr_sku":"FP054002","pattern_name":"Au palais petit","color_name":"Soie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP054002-au-palais","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu_251x335_webp.webp","specs":{"Type":"Vinyls - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 98 cm - 38,00 inch | V: 123 cm - 48,42 inch | Straight repeat","Weight":"420 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 98 cm - 38,00 inch | V: 123 cm - 48,42 inch | Straight repeat","weight":"420 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Au palais petit","description":"Vinyls - Printed wallpapers, Au palais petit. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:57.330Z"}
+{"mfr_sku":"FP196004","pattern_name":"Lavezzi","color_name":"Corail","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP196004-lavezzi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 87 cm - 34,25 inch | Half drop repeat","Weight":"202 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 87 cm - 34,25 inch | Half drop repeat","weight":"202 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Lavezzi","description":"Small width printed wallpapers, Lavezzi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:58.111Z"}
+{"mfr_sku":"FP535003","pattern_name":"Nuances","color_name":"Caraibes","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP535003-nuances","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Extra washable"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Nuances","description":"Small width printed wallpapers - Vinyls, Nuances. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp","https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp","https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp","https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp","https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp","https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp","https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp","https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp","https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp","https://static.pierrefrey.com/uploads/product/packshots/085ad0f4-823d-4773-bdf0-1fa968d7748d/Hww1hf3Wt0kVgcK6c7I4.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp,https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp,https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp,https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp,https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp,https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp,https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp,https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp,https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp,https://static.pierrefrey.com/uploads/product/packshots/085ad0f4-823d-4773-bdf0-1fa968d7748d/Hww1hf3Wt0kVgcK6c7I4.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:58.924Z"}
+{"mfr_sku":"FP164002","pattern_name":"Wallpaper bazoches","color_name":"Bleu Vert","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP164002-wallpaper-bazoches","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  3,66 mts","Backing":"PAPER","Composition":"-","Width":"78 cm / 30,70 inch","Repeat":"V: 61 cm - 24,01 inch | Straight repeat","Weight":"226 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"78 cm / 30,70 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 61 cm - 24,01 inch | Straight repeat","weight":"226 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  3,66 mts","roll_length":null,"collection":"Wallpaper bazoches","description":"Small width printed wallpapers, Wallpaper bazoches. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:17:59.732Z"}
+{"mfr_sku":"LP108007","pattern_name":"Plumettes","color_name":"Moutarde","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP108007-plumettes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,10 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 22 cm - 8,00 inch | V: 16 cm - 6,29 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Soaking time before hanging: maximum 2 minutes.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 22 cm - 8,00 inch | V: 16 cm - 6,29 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,10 mts","roll_length":null,"collection":"Plumettes","description":"Small width printed wallpapers, Plumettes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/e7a711a7-a131-4f19-883b-92d4e3f32211/3wIYH3A0eoIi2ZS1cGMD.webp","https://static.pierrefrey.com/uploads/product/packshots/5b165095-ee1f-4680-a8bd-7c8b35ac81a4/y8FDTMAyyPm72A3nBx9R.webp","https://static.pierrefrey.com/uploads/product/packshots/69cd0d72-253c-4f75-85b8-e96f860e885d/p6zYvoHDyn9UX8A7BXsJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8346139f-52a5-4f65-832d-df894dde42cf/7U9DSjPeQxYW2afTiZtd.webp","https://static.pierrefrey.com/uploads/product/packshots/f29f25c3-55c9-4bf5-939a-a7268dd85aec/KSUsGEwp1aUrOQhRWhNP.webp","https://static.pierrefrey.com/uploads/product/packshots/218bf3fa-cdba-4af3-b0fd-a77563aab061/zTQRh9zPzW16Tvu9Ll5h.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/e7a711a7-a131-4f19-883b-92d4e3f32211/3wIYH3A0eoIi2ZS1cGMD.webp,https://static.pierrefrey.com/uploads/product/packshots/5b165095-ee1f-4680-a8bd-7c8b35ac81a4/y8FDTMAyyPm72A3nBx9R.webp,https://static.pierrefrey.com/uploads/product/packshots/69cd0d72-253c-4f75-85b8-e96f860e885d/p6zYvoHDyn9UX8A7BXsJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8346139f-52a5-4f65-832d-df894dde42cf/7U9DSjPeQxYW2afTiZtd.webp,https://static.pierrefrey.com/uploads/product/packshots/f29f25c3-55c9-4bf5-939a-a7268dd85aec/KSUsGEwp1aUrOQhRWhNP.webp,https://static.pierrefrey.com/uploads/product/packshots/218bf3fa-cdba-4af3-b0fd-a77563aab061/zTQRh9zPzW16Tvu9Ll5h.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:00.742Z"}
+{"mfr_sku":"FP925002","pattern_name":"Aurelie","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP925002-aurelie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"93 % Polyester - 7 % Cotton","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"367 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Notes":"Good lightfastness","Information":"Panel effect","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"93 % Polyester - 7 % Cotton","material":"NON WOVEN","pattern_repeat":"Free match","weight":"367 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Aurelie","description":"Paperbacked fabrics, Aurelie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:02.310Z"}
+{"mfr_sku":"FP199001","pattern_name":"Saint hubert","color_name":"Shadow","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP199001-saint-hubert","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 66 cm - 25,98 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 66 cm - 25,98 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Saint hubert","description":"Small width printed wallpapers, Saint hubert. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:03.560Z"}
+{"mfr_sku":"FP997001","pattern_name":"Poesie fleurie","color_name":"Aurore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP997001-poesie-fleurie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24_251x335_webp.webp","specs":{"Type":"Panoramic wallpapers - Printed wallpapers","Artist":"Charlotte Boutron","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"-","Width":"110 cm / 43,30 inch","Repeat":"H: 220 cm - 86,00 inch | V: 300 cm - 118,11 inch","Weight":"136 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork | Raised pattern","Information":"1 roll = 2 panels"},"width":"110 cm / 43,30 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 220 cm - 86,00 inch | V: 300 cm - 118,11 inch","weight":"136 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per panel","roll_length":null,"collection":"Poesie fleurie","description":"Panoramic wallpapers - Printed wallpapers, Poesie fleurie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp","https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp","https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp","https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp,https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp,https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp,https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:04.741Z"}
+{"mfr_sku":"FP889001","pattern_name":"Taperet","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP889001-taperet","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Panoramic wallpapers","Collaboration":"Musée du Louvre","Sales Unit":"Full panoramic  300 cm x 300 cm ( 3 lengths 100 cm x 300 cm) - 118,11 in x 118,11 in( 3 lengths  39,37 in x 118,11 in)","Backing":"NON WOVEN","Composition":"-","Width":"100 cm / 39,37 inch","Repeat":"H: 300 cm - 118,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"135 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 3 panels","Book":"F9979PPFREY32 | F9979PPFREY37"},"width":"100 cm / 39,37 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 300 cm - 118,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"135 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  300 cm x 300 cm ( 3 lengths 100 cm x 300 cm) - 118,11 in x 118,11 in( 3 lengths  39,37 in x 118,11 in)","roll_length":null,"collection":"Taperet","description":"Wide width printed wallpapers - Panoramic wallpapers, Taperet. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp","https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp","https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp","https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp","https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/d5c8db83-7a9c-4959-983a-00937ba3e9a8/kDEVsi4JieGH6UBW5SC9.png"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp,https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp,https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp,https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp,https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/d5c8db83-7a9c-4959-983a-00937ba3e9a8/kDEVsi4JieGH6UBW5SC9.png","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/d5c8db83-7a9c-4959-983a-00937ba3e9a8/kDEVsi4JieGH6UBW5SC9.png","product_type":"wallcovering","scraped_at":"2026-07-07T20:18:05.559Z"}
+{"mfr_sku":"FP011001","pattern_name":"Diorama","color_name":"Encre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP011001-diorama","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Constance Guisset Studio","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"135 cm / 53,14 inch","Repeat":"H: 135 cm - 53,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","Weight":"196 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Notes":"Raised pattern","Book":"F9979PPFREY41"},"width":"135 cm / 53,14 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 135 cm - 53,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","weight":"196 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Diorama","description":"Wide width printed wallpapers, Diorama. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:06.495Z"}
+{"mfr_sku":"BP348001","pattern_name":"Les arcades-albertine","color_name":"Rouge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP348001-les-arcades-albertine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Paperbacked fabrics - Panoramic wallpapers","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"H: 130 cm - 51,00 inch | V: 300 cm - 118,11 inch","Weight":"325 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 130 cm - 51,00 inch | V: 300 cm - 118,11 inch","weight":"325 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per panel","roll_length":null,"collection":"Les arcades-albertine","description":"Small width printed wallpapers - Paperbacked fabrics - Panoramic wallpapers, Les arcades-albertine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/d6098f0a-1527-47bc-a99f-8314bf452faa/wtPVyJTpwHfQOyxcUUGE.png"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/d6098f0a-1527-47bc-a99f-8314bf452faa/wtPVyJTpwHfQOyxcUUGE.png","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/d6098f0a-1527-47bc-a99f-8314bf452faa/wtPVyJTpwHfQOyxcUUGE.png","product_type":"wallcovering","scraped_at":"2026-07-07T20:18:07.403Z"}
+{"mfr_sku":"LP105003","pattern_name":"Batik raisin","color_name":"Galet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP105003-batik-raisin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch | V: 28 cm - 11,02 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 34 cm - 13,00 inch | V: 28 cm - 11,02 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Batik raisin","description":"Small width printed wallpapers, Batik raisin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/3afc0252-d66b-4afd-8022-bff9a36d6f39/XRpmoxASGpsjgqGMziAU.webp","https://static.pierrefrey.com/uploads/product/packshots/ff44f57a-863a-4b0f-b27d-77ebdbb5402c/T8OZbxHa4H2bUYWtrcEa.webp","https://static.pierrefrey.com/uploads/product/packshots/12ff8228-639e-47d2-a5b9-bf4daa98caf0/gHtPai0fXE3tb9zXQPhx.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/3afc0252-d66b-4afd-8022-bff9a36d6f39/XRpmoxASGpsjgqGMziAU.webp,https://static.pierrefrey.com/uploads/product/packshots/ff44f57a-863a-4b0f-b27d-77ebdbb5402c/T8OZbxHa4H2bUYWtrcEa.webp,https://static.pierrefrey.com/uploads/product/packshots/12ff8228-639e-47d2-a5b9-bf4daa98caf0/gHtPai0fXE3tb9zXQPhx.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:08.222Z"}
+{"mfr_sku":"FP043002","pattern_name":"Hana","color_name":"Menthe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP043002-hana","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV_251x335_webp.webp","specs":{"Type":"Embossed patterns - Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"PAPER","Composition":"38 % Viscose - 30 % Polyester - 23 % Straw - 9 % Cotton","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 79 cm - 31,10 inch | Free match","Weight":"715 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Notes":"Raised pattern","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"F9979PPFREY44"},"width":"86 cm / 33,85 inch","composition":"38 % Viscose - 30 % Polyester - 23 % Straw - 9 % Cotton","material":"PAPER","pattern_repeat":"H: 86 cm - 33,00 inch | V: 79 cm - 31,10 inch | Free match","weight":"715 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Hana","description":"Embossed patterns - Straws and similar materials - Embroideries, Hana. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:09.053Z"}
+{"mfr_sku":"FP310003","pattern_name":"Jardin de mysore","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP310003-jardin-de-mysore","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 91 cm - 35,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 91 cm - 35,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Jardin de mysore","description":"Wide width printed wallpapers, Jardin de mysore. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp","https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp","https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp","https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp","https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp","https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp","https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp","https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp","https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp","https://static.pierrefrey.com/uploads/product/packshots/8139ab87-b1eb-44d3-b50a-45085c812e6d/yrvjK1egPJjYZBeyZ3Ql.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp,https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp,https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp,https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp,https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp,https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp,https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp,https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp,https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp,https://static.pierrefrey.com/uploads/product/packshots/8139ab87-b1eb-44d3-b50a-45085c812e6d/yrvjK1egPJjYZBeyZ3Ql.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:09.760Z"}
+{"mfr_sku":"BP379001","pattern_name":"Vert-bois rayure","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP379001-vert-bois-rayure","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 79 cm - 31,10 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"B9979PPBRAQ9"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 79 cm - 31,10 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Vert-bois rayure","description":"Wide width printed wallpapers, Vert-bois rayure. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:10.874Z"}
+{"mfr_sku":"FP793005","pattern_name":"Nimes","color_name":"Chantilly","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP793005-nimes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"Free match","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY27"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"205 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nimes","description":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics, Nimes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp","https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp","https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp","https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp","https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp","https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp","https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp","https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp","https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp,https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp,https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp,https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp,https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp,https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp,https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp,https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp,https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:11.745Z"}
+{"mfr_sku":"BP361001","pattern_name":"La discrete","color_name":"Noir","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP361001-la-discrete","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"La discrete","description":"Small width printed wallpapers, La discrete. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:12.732Z"}
+{"mfr_sku":"FP971001","pattern_name":"Tehea","color_name":"Nacre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP971001-tehea","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","Width":"134 cm / 52,75 inch","Repeat":"H: 33 cm - 12,00 inch | V: 33 cm - 12,99 inch | Straight repeat","Weight":"310 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Notes":"Traditional printing technique","Information":"Panel effect"},"width":"134 cm / 52,75 inch","composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 33 cm - 12,00 inch | V: 33 cm - 12,99 inch | Straight repeat","weight":"310 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tehea","description":"Wide width printed wallpapers - Straws and similar materials, Tehea. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:13.570Z"}
+{"mfr_sku":"FP927001","pattern_name":"Flavie","color_name":"Nacre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP927001-flavie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"65 % Polyamide - 21 % Cotton - 12 % Polyester - 2 % metallised yarn Lurex","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"330 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"65 % Polyamide - 21 % Cotton - 12 % Polyester - 2 % metallised yarn Lurex","material":"NON WOVEN","pattern_repeat":"Free match","weight":"330 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Flavie","description":"Paperbacked fabrics, Flavie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:14.299Z"}
+{"mfr_sku":"FP610001","pattern_name":"Scenes galantes","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP610001-scenes-galantes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Panoramic wallpapers","Sales Unit":"Full panoramic  544 cm x 300 cm ( 8 lengths  68 cm x 300 cm) - 214,17 in x 118,11 in( 8 lengths  26,77 in x 118,11 in)","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 544 cm - 214,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Sold as a complete artwork","Information":"2 rolls = 8 panels"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 544 cm - 214,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  544 cm x 300 cm ( 8 lengths  68 cm x 300 cm) - 214,17 in x 118,11 in( 8 lengths  26,77 in x 118,11 in)","roll_length":null,"collection":"Scenes galantes","description":"Small width printed wallpapers - Panoramic wallpapers, Scenes galantes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp","https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp","https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp","https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp","https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp","https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp","https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp","https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp","https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/d8d825a9-93db-4db3-8660-7dfcfb018a5b/6GnHo18QxfkWBFt2wVZV.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp,https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp,https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp,https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp,https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp,https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp,https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp,https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp,https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/d8d825a9-93db-4db3-8660-7dfcfb018a5b/6GnHo18QxfkWBFt2wVZV.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/d8d825a9-93db-4db3-8660-7dfcfb018a5b/6GnHo18QxfkWBFt2wVZV.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:18:14.960Z"}
+{"mfr_sku":"FP953002","pattern_name":"Panthera","color_name":"Sauvage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP953002-panthera","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d9f3e982-385a-4824-82aa-63e184f8f2ae/phYKTBvVw170RNaYRvyX_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"PAPER","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch | V: 44 cm - 17,32 inch | Straight repeat","Weight":"320 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Extra washable | Stain and impact resistant"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"PAPER","pattern_repeat":"H: 34 cm - 13,00 inch | V: 44 cm - 17,32 inch | Straight repeat","weight":"320 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Panthera","description":"Small width printed wallpapers - Vinyls, Panthera. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d9f3e982-385a-4824-82aa-63e184f8f2ae/phYKTBvVw170RNaYRvyX.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d9f3e982-385a-4824-82aa-63e184f8f2ae/phYKTBvVw170RNaYRvyX.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d9f3e982-385a-4824-82aa-63e184f8f2ae/phYKTBvVw170RNaYRvyX.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:15.679Z"}
+{"mfr_sku":"FP924001","pattern_name":"Carole","color_name":"Champagne","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP924001-carole","list_image":"https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"53 % Polyester - 47 % Linen","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"359 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"53 % Polyester - 47 % Linen","material":"NON WOVEN","pattern_repeat":"Free match","weight":"359 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Carole","description":"Plains & semi plains - Paperbacked fabrics, Carole. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:16.487Z"}
+{"mfr_sku":"FP370001","pattern_name":"Le couple","color_name":"Noiretblanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP370001-le-couple","list_image":"https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Louise Bourgoin","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"135 cm / 53,14 inch","Repeat":"H: 45 cm - 17,00 inch | V: 51 cm - 20,07 inch | Straight repeat","Weight":"149 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY9"},"width":"135 cm / 53,14 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 45 cm - 17,00 inch | V: 51 cm - 20,07 inch | Straight repeat","weight":"149 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le couple","description":"Wide width printed wallpapers, Le couple. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp","https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp","https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp","https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp","https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp","https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp","https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp","https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp","https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp","https://static.pierrefrey.com/uploads/product/packshots/e35ab9fc-883e-4617-aab3-5b0ddcbd82be/e0xtcFqJU0ELu6lM1pbB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp,https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp,https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp,https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp,https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp,https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp,https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp,https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp,https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp,https://static.pierrefrey.com/uploads/product/packshots/e35ab9fc-883e-4617-aab3-5b0ddcbd82be/e0xtcFqJU0ELu6lM1pbB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:17.149Z"}
+{"mfr_sku":"FP535001","pattern_name":"Nuances","color_name":"Fauve","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP535001-nuances","list_image":"https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Extra washable"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Nuances","description":"Small width printed wallpapers - Vinyls, Nuances. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp","https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp","https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp","https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp","https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp","https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp","https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp","https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp","https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp","https://static.pierrefrey.com/uploads/product/packshots/085ad0f4-823d-4773-bdf0-1fa968d7748d/Hww1hf3Wt0kVgcK6c7I4.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/daca958c-dc5d-4957-bf8d-5c4095c9483a/Kxgv9kXXboG8SidDtU0B.webp,https://static.pierrefrey.com/uploads/product/packshots/aca998b8-9888-474d-b342-5ab095ff2061/HRUa0hQKJZGrzN9XfN1G.webp,https://static.pierrefrey.com/uploads/product/packshots/d1c638b6-fc57-417e-9f03-1ecc35ccca63/7IVuFNGNwLbckeZAGTJc.webp,https://static.pierrefrey.com/uploads/product/packshots/315b213a-268c-415e-baa6-44a7a89b6714/gOPtfPoOXT9skbGPJksJ.webp,https://static.pierrefrey.com/uploads/product/packshots/a469fb9e-f90d-4de9-bcdd-6334c8fb1522/FPonWYJz2V7fp8gzLJzL.webp,https://static.pierrefrey.com/uploads/product/packshots/cca61e46-2546-444c-8d21-3ade01ca314d/lfWn0Hod6EB0TdGde04t.webp,https://static.pierrefrey.com/uploads/product/packshots/63d480f0-9bca-4dc1-b623-75abf10183d0/KnCjlFseflU8coGHOkH5.webp,https://static.pierrefrey.com/uploads/product/packshots/ade8a2b1-c4fd-439c-8f6a-6eb0f8fa5028/jY1aHhLWpWwgTw333y7l.webp,https://static.pierrefrey.com/uploads/product/packshots/201d76ac-6b9a-443c-917f-ab34d98e7db3/l2aBe65OzdYiiJ99sT6R.webp,https://static.pierrefrey.com/uploads/product/packshots/085ad0f4-823d-4773-bdf0-1fa968d7748d/Hww1hf3Wt0kVgcK6c7I4.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:17.819Z"}
+{"mfr_sku":"BP206005","pattern_name":"Wallpaper la fontaine","color_name":"Yellow Blue","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP206005-wallpaper-la-fontaine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 50 cm - 19,68 inch | Straight repeat","Weight":"174 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 50 cm - 19,68 inch | Straight repeat","weight":"174 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper la fontaine","description":"Small width printed wallpapers, Wallpaper la fontaine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:18.586Z"}
+{"mfr_sku":"FP474001","pattern_name":"Yunnan","color_name":"Bleu Terrestre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP474001-yunnan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Panoramic wallpapers","Sales Unit":"Full panoramic  272 cm x 300 cm ( 4 lengths  68 cm x 300 cm) - 107,08 in x 118,11 in( 4 lengths  26,77 in x 118,11 in)","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 272 cm - 107,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Sold as a complete artwork | Stain and impact resistant","Information":"1 roll = 4 panels"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 272 cm - 107,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  272 cm x 300 cm ( 4 lengths  68 cm x 300 cm) - 107,08 in x 118,11 in( 4 lengths  26,77 in x 118,11 in)","roll_length":null,"collection":"Yunnan","description":"Small width printed wallpapers - Vinyls - Panoramic wallpapers, Yunnan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp","https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp","https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp","https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp","https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/DGjkR29mxioJAf9HTEjM.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp,https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp,https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp,https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp,https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/DGjkR29mxioJAf9HTEjM.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/DGjkR29mxioJAf9HTEjM.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:18:19.359Z"}
+{"mfr_sku":"FP041001","pattern_name":"Nolan","color_name":"Chantilly","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP041001-nolan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"53 % Viscose - 41 % Cotton - 6 % Polyester","Width":"138 cm / 54,33 inch","Repeat":"H: 138 cm - 54,00 inch | V: 87 cm - 34,25 inch | Straight repeat","Weight":"418 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"138 cm / 54,33 inch","composition":"53 % Viscose - 41 % Cotton - 6 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 138 cm - 54,00 inch | V: 87 cm - 34,25 inch | Straight repeat","weight":"418 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nolan","description":"Paperbacked fabrics, Nolan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:20.309Z"}
+{"mfr_sku":"FP977001","pattern_name":"Grenadier","color_name":"Grenade","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP977001-grenadier","list_image":"https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 136 cm - 53,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 136 cm - 53,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Grenadier","description":"Wide width printed wallpapers, Grenadier. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:21.022Z"}
+{"mfr_sku":"BP342001","pattern_name":"Le paravent chinois irise","color_name":"Prairie","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP342001-le-paravent-chinois-irise","list_image":"https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 139 cm - 54,72 inch | Straight repeat","Weight":"160 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 139 cm - 54,72 inch | Straight repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le paravent chinois irise","description":"Wide width printed wallpapers, Le paravent chinois irise. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:21.803Z"}
+{"mfr_sku":"FP310001","pattern_name":"Jardin de mysore","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP310001-jardin-de-mysore","list_image":"https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 91 cm - 35,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 91 cm - 35,00 inch | V: 86 cm - 33,85 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Jardin de mysore","description":"Wide width printed wallpapers, Jardin de mysore. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp","https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp","https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp","https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp","https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp","https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp","https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp","https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp","https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp","https://static.pierrefrey.com/uploads/product/packshots/8139ab87-b1eb-44d3-b50a-45085c812e6d/yrvjK1egPJjYZBeyZ3Ql.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/dcc12937-69ea-4955-b7dd-4082732f6cfa/I2dhOfxyqrOJTatlIKcK.webp,https://static.pierrefrey.com/uploads/product/packshots/a7a47977-b823-49a8-b3ca-dccc93ab2e7d/ZKypcMuozuF0elBPPtlS.webp,https://static.pierrefrey.com/uploads/product/packshots/d740ec0e-ce25-4db0-921c-4269dd296f84/O7lvTMJTEVhhAfJly0fG.webp,https://static.pierrefrey.com/uploads/product/packshots/a085e99d-9604-4152-8f41-febb2c4412f1/G2IesgfnDPYq6Z0RKSxl.webp,https://static.pierrefrey.com/uploads/product/packshots/9a700366-b608-4b63-b2a3-e3b48a700963/oSHruXIc1EAfGRsyzkwA.webp,https://static.pierrefrey.com/uploads/product/packshots/af953744-c56a-400f-832b-22743fa85cb7/rK0GMEqobfkZP0V0ouCr.webp,https://static.pierrefrey.com/uploads/product/packshots/72762eae-92a0-48a6-8cde-29a4f4449bb9/fJFERjYFR7xJpj2mQKIy.webp,https://static.pierrefrey.com/uploads/product/packshots/0d437861-5d64-4c32-8eb5-201d5cb54421/G2EOq14LfCE0Dhcdx3sL.webp,https://static.pierrefrey.com/uploads/product/packshots/baffad99-01a4-4cdc-bf68-9ef3cfece6d8/ewqCkyFChDvrE488oAw1.webp,https://static.pierrefrey.com/uploads/product/packshots/8139ab87-b1eb-44d3-b50a-45085c812e6d/yrvjK1egPJjYZBeyZ3Ql.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:22.442Z"}
+{"mfr_sku":"BP203001","pattern_name":"Wallpaper bengali","color_name":"Bone","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP203001-wallpaper-bengali","list_image":"https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  5,45 mts","Backing":"PAPER","Composition":"-","Width":"60 cm / 23,62 inch","Repeat":"V: 69 cm - 27,16 inch | Straight repeat","Weight":"204 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"60 cm / 23,62 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 69 cm - 27,16 inch | Straight repeat","weight":"204 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  5,45 mts","roll_length":null,"collection":"Wallpaper bengali","description":"Small width printed wallpapers, Wallpaper bengali. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/2b233c4d-1300-45ee-8566-08d70e3cb7a3/ocUOmplZEa0KisuQu4lP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/2b233c4d-1300-45ee-8566-08d70e3cb7a3/ocUOmplZEa0KisuQu4lP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:23.270Z"}
+{"mfr_sku":"FP967002","pattern_name":"Elixir","color_name":"Banquise","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP967002-elixir","list_image":"https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 85 cm - 33,46 inch | Half drop repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"PAPER","pattern_repeat":"H: 68 cm - 26,00 inch | V: 85 cm - 33,46 inch | Half drop repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Elixir","description":"Small width printed wallpapers - Vinyls, Elixir. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","https://static.pierrefrey.com/uploads/product/packshots/edd681e2-5395-474d-a735-23061d8f1770/3LZQkPbA1BkprxNfDDZY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp,https://static.pierrefrey.com/uploads/product/packshots/edd681e2-5395-474d-a735-23061d8f1770/3LZQkPbA1BkprxNfDDZY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:24.124Z"}
+{"mfr_sku":"FP168004","pattern_name":"Wallpaper sans papillons","color_name":"Corail","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP168004-wallpaper-sans-papillons","list_image":"https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 41 cm - 16,14 inch | Straight repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 41 cm - 16,14 inch | Straight repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper sans papillons","description":"Small width printed wallpapers, Wallpaper sans papillons. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/c4981731-5a17-4e66-9f5d-2a601a7513a1/9dsohfd0dYWzPa73TWIw.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/c4981731-5a17-4e66-9f5d-2a601a7513a1/9dsohfd0dYWzPa73TWIw.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:24.999Z"}
+{"mfr_sku":"FP969001","pattern_name":"Porte-bonheur","color_name":"Jour","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP969001-porte-bonheur","list_image":"https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 73 cm - 28,74 inch | Half drop repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"PAPER","pattern_repeat":"H: 68 cm - 26,00 inch | V: 73 cm - 28,74 inch | Half drop repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Porte-bonheur","description":"Small width printed wallpapers - Vinyls, Porte-bonheur. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:25.846Z"}
+{"mfr_sku":"FP185004","pattern_name":"Wallpaper erevan","color_name":"Mustard","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP185004-wallpaper-erevan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 39 cm - 15,35 inch | Straight repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 39 cm - 15,35 inch | Straight repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper erevan","description":"Small width printed wallpapers, Wallpaper erevan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:26.645Z"}
+{"mfr_sku":"FP771003","pattern_name":"Poseidon","color_name":"Menthe A L'Eau","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP771003-poseidon","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Artist":"Irène Rohr","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 65 cm - 25,59 inch | Half drop repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Poseidon","description":"Small width printed wallpapers, Poseidon. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","https://static.pierrefrey.com/uploads/product/packshots/3528fd8c-0a1b-4c5d-87b4-2ea76c21c9a3/Wy5ZAqReBSh0zL3k8Oor.webp","https://static.pierrefrey.com/uploads/product/packshots/23b1a953-55ac-4cd2-8655-1b26c9957461/kKR5EtoNToVbHh8j4znW.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp,https://static.pierrefrey.com/uploads/product/packshots/3528fd8c-0a1b-4c5d-87b4-2ea76c21c9a3/Wy5ZAqReBSh0zL3k8Oor.webp,https://static.pierrefrey.com/uploads/product/packshots/23b1a953-55ac-4cd2-8655-1b26c9957461/kKR5EtoNToVbHh8j4znW.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:27.396Z"}
+{"mfr_sku":"FP038001","pattern_name":"Esi","color_name":"Nacre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP038001-esi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"139 cm / 54,72 inch","Repeat":"H: 69 cm - 27,00 inch | V: 52 cm - 20,47 inch | Straight repeat","Weight":"565 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY43"},"width":"139 cm / 54,72 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 69 cm - 27,00 inch | V: 52 cm - 20,47 inch | Straight repeat","weight":"565 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Esi","description":"Paperbacked fabrics, Esi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:28.205Z"}
+{"mfr_sku":"FP320003","pattern_name":"Mauritius","color_name":"Orage","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP320003-mauritius","list_image":"https://static.pierrefrey.com/uploads/product/packshots/de1705e3-02e4-435e-a649-10ea62c3270a/ISPjJWz6LkZLv1mDW1cm_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"140 cm / 55,11 inch","Repeat":"V: 100 cm - 39,37 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"140 cm / 55,11 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"V: 100 cm - 39,37 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mauritius","description":"Wide width printed wallpapers, Mauritius. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/de1705e3-02e4-435e-a649-10ea62c3270a/ISPjJWz6LkZLv1mDW1cm.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/de1705e3-02e4-435e-a649-10ea62c3270a/ISPjJWz6LkZLv1mDW1cm.webp","https://static.pierrefrey.com/uploads/product/packshots/319c7d51-4ecf-4ee2-b4bd-51b0b403c17f/5NrXANIFfOmXN1GjBq0Y.webp","https://static.pierrefrey.com/uploads/product/packshots/4d2a9406-5b1a-4c02-80d7-6bc8e377adb1/IBAJiIK8SPLItTgX9zk3.webp","https://static.pierrefrey.com/uploads/product/packshots/7e8abc59-aaee-460e-bfc7-2246f4ad7672/3OfiJhUX0OGYpc3c9I31.webp","https://static.pierrefrey.com/uploads/product/packshots/15ea38a8-541f-4e79-a11d-2b9dc90e3e8f/to8KmLhihnHaaGTPo4RX.webp","https://static.pierrefrey.com/uploads/product/packshots/c73e4057-2b3c-4c36-9784-8bdefc820b3c/NyYNGrS7ybeGMWmhthYd.webp","https://static.pierrefrey.com/uploads/product/packshots/266b27f6-6351-462e-afe5-d3e669118cb2/GTTDNwPmtShz5IV4BqJI.webp","https://static.pierrefrey.com/uploads/product/packshots/77796aa8-6692-47d9-8dac-6e76c0ec9bd4/XNmv7pfXI9102N2VaTzM.webp","https://static.pierrefrey.com/uploads/product/packshots/7d56f044-075d-4171-8c41-3f38990ffe75/BegiLQaIzzWLX7IdGpaZ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/de1705e3-02e4-435e-a649-10ea62c3270a/ISPjJWz6LkZLv1mDW1cm.webp,https://static.pierrefrey.com/uploads/product/packshots/319c7d51-4ecf-4ee2-b4bd-51b0b403c17f/5NrXANIFfOmXN1GjBq0Y.webp,https://static.pierrefrey.com/uploads/product/packshots/4d2a9406-5b1a-4c02-80d7-6bc8e377adb1/IBAJiIK8SPLItTgX9zk3.webp,https://static.pierrefrey.com/uploads/product/packshots/7e8abc59-aaee-460e-bfc7-2246f4ad7672/3OfiJhUX0OGYpc3c9I31.webp,https://static.pierrefrey.com/uploads/product/packshots/15ea38a8-541f-4e79-a11d-2b9dc90e3e8f/to8KmLhihnHaaGTPo4RX.webp,https://static.pierrefrey.com/uploads/product/packshots/c73e4057-2b3c-4c36-9784-8bdefc820b3c/NyYNGrS7ybeGMWmhthYd.webp,https://static.pierrefrey.com/uploads/product/packshots/266b27f6-6351-462e-afe5-d3e669118cb2/GTTDNwPmtShz5IV4BqJI.webp,https://static.pierrefrey.com/uploads/product/packshots/77796aa8-6692-47d9-8dac-6e76c0ec9bd4/XNmv7pfXI9102N2VaTzM.webp,https://static.pierrefrey.com/uploads/product/packshots/7d56f044-075d-4171-8c41-3f38990ffe75/BegiLQaIzzWLX7IdGpaZ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:28.880Z"}
+{"mfr_sku":"FP923002","pattern_name":"Suzette","color_name":"Albatre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP923002-suzette","list_image":"https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"29 % Linen - 28 % Wool - 19 % Polyester - 16 % Cotton - 8 % Polyamide","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"357 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"29 % Linen - 28 % Wool - 19 % Polyester - 16 % Cotton - 8 % Polyamide","material":"NON WOVEN","pattern_repeat":"Free match","weight":"357 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Suzette","description":"Paperbacked fabrics, Suzette. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:29.729Z"}
+{"mfr_sku":"LP108003","pattern_name":"Plumettes","color_name":"Verveine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP108003-plumettes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,10 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 22 cm - 8,00 inch | V: 16 cm - 6,29 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Soaking time before hanging: maximum 2 minutes.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 22 cm - 8,00 inch | V: 16 cm - 6,29 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,10 mts","roll_length":null,"collection":"Plumettes","description":"Small width printed wallpapers, Plumettes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/e7a711a7-a131-4f19-883b-92d4e3f32211/3wIYH3A0eoIi2ZS1cGMD.webp","https://static.pierrefrey.com/uploads/product/packshots/5b165095-ee1f-4680-a8bd-7c8b35ac81a4/y8FDTMAyyPm72A3nBx9R.webp","https://static.pierrefrey.com/uploads/product/packshots/69cd0d72-253c-4f75-85b8-e96f860e885d/p6zYvoHDyn9UX8A7BXsJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8346139f-52a5-4f65-832d-df894dde42cf/7U9DSjPeQxYW2afTiZtd.webp","https://static.pierrefrey.com/uploads/product/packshots/f29f25c3-55c9-4bf5-939a-a7268dd85aec/KSUsGEwp1aUrOQhRWhNP.webp","https://static.pierrefrey.com/uploads/product/packshots/218bf3fa-cdba-4af3-b0fd-a77563aab061/zTQRh9zPzW16Tvu9Ll5h.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/e7a711a7-a131-4f19-883b-92d4e3f32211/3wIYH3A0eoIi2ZS1cGMD.webp,https://static.pierrefrey.com/uploads/product/packshots/5b165095-ee1f-4680-a8bd-7c8b35ac81a4/y8FDTMAyyPm72A3nBx9R.webp,https://static.pierrefrey.com/uploads/product/packshots/69cd0d72-253c-4f75-85b8-e96f860e885d/p6zYvoHDyn9UX8A7BXsJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8346139f-52a5-4f65-832d-df894dde42cf/7U9DSjPeQxYW2afTiZtd.webp,https://static.pierrefrey.com/uploads/product/packshots/f29f25c3-55c9-4bf5-939a-a7268dd85aec/KSUsGEwp1aUrOQhRWhNP.webp,https://static.pierrefrey.com/uploads/product/packshots/218bf3fa-cdba-4af3-b0fd-a77563aab061/zTQRh9zPzW16Tvu9Ll5h.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:30.699Z"}
+{"mfr_sku":"FP612002","pattern_name":"Voyage en toscane la campagne","color_name":"Fp612002","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP612002-voyage-en-toscane-la-campagne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Panoramic wallpapers","Sales Unit":"Full panoramic  137 cm x 300 cm ( 2 lengths  68 cm x 300 cm) -  53,93 in x 118,11 in( 2 lengths  26,77 in x 118,11 in)","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 137 cm - 53,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Sold as a complete artwork","Information":"Panel effect | 1 roll = 2 panels"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  137 cm x 300 cm ( 2 lengths  68 cm x 300 cm) -  53,93 in x 118,11 in( 2 lengths  26,77 in x 118,11 in)","roll_length":null,"collection":"Voyage en toscane la campagne","description":"Small width printed wallpapers - Panoramic wallpapers, Voyage en toscane la campagne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp","https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp","https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp","https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp","https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp","https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp","https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp","https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp","https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/df0859e2-cb01-4297-83d1-6e9add732fa2/57M2uMm7bjdRMSztpyLI.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp,https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp,https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp,https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp,https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp,https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp,https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp,https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp,https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/df0859e2-cb01-4297-83d1-6e9add732fa2/57M2uMm7bjdRMSztpyLI.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/df0859e2-cb01-4297-83d1-6e9add732fa2/57M2uMm7bjdRMSztpyLI.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:18:31.440Z"}
+{"mfr_sku":"LP105001","pattern_name":"Batik raisin","color_name":"Pivoine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP105001-batik-raisin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 34 cm - 13,00 inch | V: 28 cm - 11,02 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 34 cm - 13,00 inch | V: 28 cm - 11,02 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Batik raisin","description":"Small width printed wallpapers, Batik raisin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/3afc0252-d66b-4afd-8022-bff9a36d6f39/XRpmoxASGpsjgqGMziAU.webp","https://static.pierrefrey.com/uploads/product/packshots/ff44f57a-863a-4b0f-b27d-77ebdbb5402c/T8OZbxHa4H2bUYWtrcEa.webp","https://static.pierrefrey.com/uploads/product/packshots/12ff8228-639e-47d2-a5b9-bf4daa98caf0/gHtPai0fXE3tb9zXQPhx.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/3afc0252-d66b-4afd-8022-bff9a36d6f39/XRpmoxASGpsjgqGMziAU.webp,https://static.pierrefrey.com/uploads/product/packshots/ff44f57a-863a-4b0f-b27d-77ebdbb5402c/T8OZbxHa4H2bUYWtrcEa.webp,https://static.pierrefrey.com/uploads/product/packshots/12ff8228-639e-47d2-a5b9-bf4daa98caf0/gHtPai0fXE3tb9zXQPhx.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:32.298Z"}
+{"mfr_sku":"FP995001","pattern_name":"Plan jaillot","color_name":"Archive","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP995001-plan-jaillot","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD_335x251_webp.webp","specs":{"Type":"Panoramic wallpapers - Printed wallpapers","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"-","Width":"100 cm / 39,37 inch","Repeat":"H: 300 cm - 118,00 inch | V: 300 cm - 118,11 inch","Weight":"185 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 3 panels"},"width":"100 cm / 39,37 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 300 cm - 118,00 inch | V: 300 cm - 118,11 inch","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per panel","roll_length":null,"collection":"Plan jaillot","description":"Panoramic wallpapers - Printed wallpapers, Plan jaillot. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp","https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp","https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp","https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp","https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp","https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp","https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp","https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp","https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp","https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp","https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp,https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp,https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp,https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp,https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp,https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp,https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp,https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp,https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp,https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp,https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:33.079Z"}
+{"mfr_sku":"FP827001","pattern_name":"Mardi gras  multicolore","color_name":"Fp827001","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP827001-mardi-gras-multicolore","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 70 cm - 27,55 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY28"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 70 cm - 27,55 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mardi gras  multicolore","description":"Wide width printed wallpapers, Mardi gras  multicolore. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp","https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp","https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp","https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp","https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp","https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp","https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp","https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp","https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp","https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp","https://static.pierrefrey.com/uploads/product/packshots/037ee242-ed62-4a81-9f5b-c4ef8f6e3955/RGudF0K459BLhSq5L2yM.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp,https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp,https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp,https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp,https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp,https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp,https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp,https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp,https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp,https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp,https://static.pierrefrey.com/uploads/product/packshots/037ee242-ed62-4a81-9f5b-c4ef8f6e3955/RGudF0K459BLhSq5L2yM.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:33.815Z"}
+{"mfr_sku":"BP332001","pattern_name":"Konotori","color_name":"Rose","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP332001-konotori","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"H: 65 cm - 25,00 inch | V: 62 cm - 24,40 inch | Straight repeat","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"H: 65 cm - 25,00 inch | V: 62 cm - 24,40 inch | Straight repeat","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Konotori","description":"Wide width printed wallpapers - Paperbacked fabrics, Konotori. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4c6d8-8af0-4573-8070-d52958e4227c/lG2JfOHwxNmRL82n6dvE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4c6d8-8af0-4573-8070-d52958e4227c/lG2JfOHwxNmRL82n6dvE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:34.636Z"}
+{"mfr_sku":"FP647001","pattern_name":"Alba","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP647001-alba","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"135 cm / 53,14 inch","Repeat":"Free match","Weight":"480 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect"},"width":"135 cm / 53,14 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"480 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Alba","description":"Plains & semi plains - Paperbacked fabrics, Alba. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:35.471Z"}
+{"mfr_sku":"FP920002","pattern_name":"Inga","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP920002-inga","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"63 % Linen - 36 % Cotton - 1 % Polyamide","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"410 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"63 % Linen - 36 % Cotton - 1 % Polyamide","material":"NON WOVEN","pattern_repeat":"Free match","weight":"410 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Inga","description":"Plains & semi plains - Paperbacked fabrics, Inga. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:36.179Z"}
+{"mfr_sku":"FP946002","pattern_name":"Toile de nantes intisse","color_name":"Cannelle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP946002-toile-de-nantes-intisse","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"127 cm / 50,00 inch","Repeat":"H: 42 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Flat screen printed","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"127 cm / 50,00 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 42 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Toile de nantes intisse","description":"Wide width printed wallpapers, Toile de nantes intisse. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp","https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp","https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp","https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp","https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp","https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp,https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp,https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp,https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp,https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp,https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:37.079Z"}
+{"mfr_sku":"FP029001","pattern_name":"Lucie","color_name":"Neige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP029001-lucie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Cotton","Width":"135 cm / 53,14 inch","Repeat":"Free match","Weight":"495 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"135 cm / 53,14 inch","composition":"100 % Cotton","material":"NON WOVEN","pattern_repeat":"Free match","weight":"495 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Lucie","description":"Paperbacked fabrics, Lucie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:38.147Z"}
+{"mfr_sku":"FP005001","pattern_name":"La baignade","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP005001-la-baignade","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Jean-Pierre Marladot","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 161 cm - 63,38 inch | Offset repeat 1/3","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY41"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 161 cm - 63,38 inch | Offset repeat 1/3","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"La baignade","description":"Wide width printed wallpapers, La baignade. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp","https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp","https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp","https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp","https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp","https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp","https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp","https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp","https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp","https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp","https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp","https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp","https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp","https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp","https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp","https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp","https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp","https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp","https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp","https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp","https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp","https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp","https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp","https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp","https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e3c10df5-fbdd-42bb-9821-076c84dd7025/ztYtVtEo2M8ghtzLK6fj.webp,https://static.pierrefrey.com/uploads/product/packshots/9bfa9615-2c20-4626-9896-8fcdd983abe3/Hu3CpiV3r2S3XFJWIIJp.webp,https://static.pierrefrey.com/uploads/product/packshots/6ac42e6b-eb08-458e-993a-6ab8a643213b/fIY8w1ywrm1Zrw3yJWvj.webp,https://static.pierrefrey.com/uploads/product/packshots/38e9380a-7f80-4b88-8579-5d43e3b56c4d/aJJZgP5kxwFLsaz4Y229.webp,https://static.pierrefrey.com/uploads/product/packshots/6be61bee-6eb0-4f23-8e6e-6f4640367d45/R1Co88ULlmeE7QPniXL5.webp,https://static.pierrefrey.com/uploads/product/packshots/d5ff4a91-34e0-4036-b555-1520ba2914eb/P6N50sC0WvLqbLtLflqo.webp,https://static.pierrefrey.com/uploads/product/packshots/1e43c6fe-ab5e-4d7d-a197-6f7c336b4a02/CeuJJR0JBSa5MPwncCTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f89769b-d705-48ef-9d1f-d96eea31caaf/z32NYWAn5cap6kXnUTDy.webp,https://static.pierrefrey.com/uploads/product/packshots/50107f62-7f66-4a38-ada0-5082c4c896d8/iYncKIvRYc8n6feePGU9.webp,https://static.pierrefrey.com/uploads/product/packshots/44c1cf56-e243-4699-9976-7532d61e3e9a/dLGJgZcJ6LDfE4T45XMR.webp,https://static.pierrefrey.com/uploads/product/packshots/71960869-5fe6-40d5-8e1c-7acdb0a4c523/kX55oULsK62i7X6W5Q9c.webp,https://static.pierrefrey.com/uploads/product/packshots/94dae2f4-15ef-4492-afb1-7529c79b1c35/Tx85ZUFzKHnRIP78evWz.webp,https://static.pierrefrey.com/uploads/product/packshots/64804c46-9f2a-493c-87ae-ffed74951def/Q6VqyqIWhBFUdg1nTdGO.webp,https://static.pierrefrey.com/uploads/product/packshots/0e7e163b-9d12-4b2d-9ce7-a8447d733460/Z477KpV9CwN4BcAo25Ja.webp,https://static.pierrefrey.com/uploads/product/packshots/55f1e672-47cd-4cba-9bec-27a2d17eb647/uX1rfS5OclQwmOd2qsHu.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp,https://static.pierrefrey.com/uploads/product/packshots/32a84a4b-6e3a-403a-8127-fb50061819eb/4hNiVXtZAj8JYIWKXfqb.webp,https://static.pierrefrey.com/uploads/product/packshots/c9672a3e-5c47-4ff6-ad51-5be1a4af9e93/atGLgyA4zOIVNdAJEbcN.webp,https://static.pierrefrey.com/uploads/product/packshots/44831bfd-ce80-4319-a4b1-be7cf8aaf38a/JtKkn5kREvAMo2EfLWO5.webp,https://static.pierrefrey.com/uploads/product/packshots/52b1f01c-25bf-428d-9f3e-6c5adb517af5/pY9h3VlSe7ShrjLpFHtO.webp,https://static.pierrefrey.com/uploads/product/packshots/5b0f7e32-f249-4ab9-9f35-f1ed1b6a1b1d/MpZsl0mPocTzUXW0b6EH.webp,https://static.pierrefrey.com/uploads/product/packshots/449b35c3-bddc-4e93-9818-6216b6bc9f22/UrZEnDsKajakWZSlDuHE.webp,https://static.pierrefrey.com/uploads/product/packshots/93d89984-3fd8-4795-a3f8-56b2bb7c4548/pa5GZegRGKT0cz4ejNf4.webp,https://static.pierrefrey.com/uploads/product/packshots/4f73a5f8-9e68-4fcf-81f4-77a41bbd1665/uC3y9NuNmNDnERGUcNhF.webp,https://static.pierrefrey.com/uploads/product/packshots/50da1415-f2c3-41a2-b67e-d7b67c1d1bf8/erQ6fJje5cgdLsH0Wtdd.webp,https://static.pierrefrey.com/uploads/product/packshots/0c823849-31d2-4d8a-8ad6-0cbf6bce94ee/UUNK4PQnTkbQud2ao5qF.webp,https://static.pierrefrey.com/uploads/product/packshots/4de9842e-9cb9-43ad-b729-7b89b738237a/L1CYXQuAtHBi3yLFtv4d.webp,https://static.pierrefrey.com/uploads/product/packshots/1a8b5010-59bb-47bc-bf82-21282ae3e5cf/hlLbq86LCck0yLqL434e.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:38.987Z"}
+{"mfr_sku":"BP334011","pattern_name":"Shiva","color_name":"PéTale","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334011-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:39.691Z"}
+{"mfr_sku":"FP065002","pattern_name":"Coconut","color_name":"Terracotta","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP065002-coconut","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0_251x335_webp.webp","specs":{"Type":"Straws and similar materials - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY45"},"width":"86 cm / 33,85 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 86 cm - 33,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Coconut","description":"Straws and similar materials - Printed wallpapers, Coconut. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:40.655Z"}
+{"mfr_sku":"W4630A02","pattern_name":"Wallpaper bananier","color_name":"Gold Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4630A02-wallpaper-bananier","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of","Backing":"PAPER","Composition":"-","Width":"91 cm / 35,82 inch","Repeat":"Straight repeat","Weight":"177 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"91 cm / 35,82 inch","composition":"-","material":"PAPER","pattern_repeat":"Straight repeat","weight":"177 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per roll of","roll_length":null,"collection":"Wallpaper bananier","description":"Small width printed wallpapers, Wallpaper bananier. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:41.464Z"}
+{"mfr_sku":"W4669004","pattern_name":"Wallpaper radzimir","color_name":"Peony","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4669004-wallpaper-radzimir","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 90 cm - 35,43 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 90 cm - 35,43 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper radzimir","description":"Small width printed wallpapers, Wallpaper radzimir. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:42.325Z"}
+{"mfr_sku":"BP207001","pattern_name":"Wallpaper les muses et le lion","color_name":"Graystone","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP207001-wallpaper-les-muses-et-le-lion","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"71 cm / 27,95 inch","Repeat":"V: 74 cm - 29,13 inch | Straight repeat","Weight":"196 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"71 cm / 27,95 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 74 cm - 29,13 inch | Straight repeat","weight":"196 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper les muses et le lion","description":"Small width printed wallpapers, Wallpaper les muses et le lion. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:43.051Z"}
+{"mfr_sku":"FP479001","pattern_name":"Sonora","color_name":"Fusain","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP479001-sonora","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 91 cm - 35,00 inch | V: 73 cm - 28,74 inch | Half drop repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY13"},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 91 cm - 35,00 inch | V: 73 cm - 28,74 inch | Half drop repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sonora","description":"Wide width printed wallpapers, Sonora. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:43.790Z"}
+{"mfr_sku":"FP989001","pattern_name":"Apollon","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP989001-apollon","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc_335x251_webp.webp","specs":{"Type":"Panoramic wallpapers - Printed wallpapers","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"100 % Paper","Width":"86 cm / 33,85 inch","Repeat":"H: 344 cm - 135,00 inch | V: 300 cm - 118,11 inch","Weight":"240 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Notes":"Sold as a complete artwork","Information":"1 roll = 4 panels"},"width":"86 cm / 33,85 inch","composition":"100 % Paper","material":"NON WOVEN","pattern_repeat":"H: 344 cm - 135,00 inch | V: 300 cm - 118,11 inch","weight":"240 gr / m²","certifications":null,"sales_unit":"Available per panel","roll_length":null,"collection":"Apollon","description":"Panoramic wallpapers - Printed wallpapers, Apollon. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp","https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp","https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp","https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp","https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp","https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp","https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp","https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp","https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp","https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp","https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e63d96d2-dff8-47bb-8d41-52a2fd3204c4/pCbuTQVuJUtO754hAvNc.webp,https://static.pierrefrey.com/uploads/product/packshots/b05196dd-6f77-4f9b-a4e3-e5a5aefb9162/3XYN6E18mJai461zpwjw.webp,https://static.pierrefrey.com/uploads/product/packshots/50f2eb7d-487d-452a-a5e6-98b49817be60/h2zqXflpLLykE9HH31CI.webp,https://static.pierrefrey.com/uploads/product/packshots/c8dc4491-49e4-435c-a023-7082bfc2746b/LDtYMDDVlK0DglAiQcKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/424f81c1-9588-44b2-852a-2f5311ba6b36/JtsaVNQxQPHP3o86Qtzy.webp,https://static.pierrefrey.com/uploads/product/packshots/64eee65e-f60a-4d7e-afd5-5ef9b47ac631/uaXMIDaD4CtqDzO3nLs9.webp,https://static.pierrefrey.com/uploads/product/packshots/e05ef0f8-27c9-42e8-ba39-024af05d6c0f/fuebVs2GXfwjTDjSOzwD.webp,https://static.pierrefrey.com/uploads/product/packshots/c407b2a9-22a9-47d4-a541-88347a108c72/WCEVXRD0oaERkSrWzkPP.webp,https://static.pierrefrey.com/uploads/product/packshots/07d7ea03-b7f9-4b3b-8939-8437c1606e87/DKEhqvYsFG0bXK9hBrX2.webp,https://static.pierrefrey.com/uploads/product/packshots/c5bcb60b-ac39-407b-a48c-6c76b50fe28b/S1H7awntDOJJzQ33sFZG.webp,https://static.pierrefrey.com/uploads/product/packshots/c31d2967-8f6e-469e-a2ac-8b4c9c755477/28o7hggZhiBKTKyrbKvF.webp,https://static.pierrefrey.com/uploads/product/packshots/464d1df6-93c1-43fd-be8b-dd9d66955f14/vVOxYIgZNuXOGqeAlgCp.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b83ce8-4745-42a7-9bb7-32c732f3cce5/GdJ5lBxgGTOgs8b80p24.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:44.495Z"}
+{"mfr_sku":"FP078001","pattern_name":"Ajoupa","color_name":"Terre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP078001-ajoupa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 34 cm - 13,00 inch | V: 89 cm - 35,03 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY45"},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 34 cm - 13,00 inch | V: 89 cm - 35,03 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ajoupa","description":"Wide width printed wallpapers, Ajoupa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/039a5a11-794d-4ef2-ac65-700a684eb864/Ct6mW7zulo9yBr3sSyiz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/039a5a11-794d-4ef2-ac65-700a684eb864/Ct6mW7zulo9yBr3sSyiz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:45.402Z"}
+{"mfr_sku":"FP793027","pattern_name":"Nimes","color_name":"Denim","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP793027-nimes","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"90 cm / 35,43 inch","Repeat":"Free match","Weight":"205 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Book":"F9979PPFREY27"},"width":"90 cm / 35,43 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"205 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Nimes","description":"Small width printed wallpapers - Plains & semi plains - Paperbacked fabrics, Nimes. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp","https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp","https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp","https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp","https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp","https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp","https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp","https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp","https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp","https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e6583466-a78f-4368-8651-ff4f5ab5ba1e/Ii5fP2aSjviFk0TLadOj.webp,https://static.pierrefrey.com/uploads/product/packshots/d78d829f-9291-435c-abf1-76b904647892/ve6qybktKMNhb0htMOkP.webp,https://static.pierrefrey.com/uploads/product/packshots/c40999cb-9aaa-496b-b50d-6db6f4fe6fcc/P0zk6aFWVDX1YJ8sKqS3.webp,https://static.pierrefrey.com/uploads/product/packshots/65778f50-0ec9-4c36-81d2-03f5686afe4b/o9LzwWNschS7JAwjdAWJ.webp,https://static.pierrefrey.com/uploads/product/packshots/8431b9a8-43f5-4ceb-86d3-9f6e112671c0/xFttOwk1gLFFcew0Iu1R.webp,https://static.pierrefrey.com/uploads/product/packshots/c809da4b-bb7a-4edf-b57e-7b3858b57de7/K3Y8nLfJcXtGMNrv8Xx1.webp,https://static.pierrefrey.com/uploads/product/packshots/94428072-81fe-4297-9a82-2edaf324cf8b/LbD6tvFtwDvHcS4XUb4M.webp,https://static.pierrefrey.com/uploads/product/packshots/19dcaef4-a722-4556-a794-1e870250e9da/9eA5UGVrvmRmsZv8omLk.webp,https://static.pierrefrey.com/uploads/product/packshots/bd85a043-5f31-4cfa-b1c5-43766ba2e4ae/2oOE08p7YEEY3Q1LGJPm.webp,https://static.pierrefrey.com/uploads/product/packshots/04dbec12-a170-4afa-8d27-e5dd218e0d9a/ZrXrgCDGIV4aVw6KOZiK.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:46.261Z"}
+{"mfr_sku":"FP843001","pattern_name":"Tamanrasset","color_name":"Grisaille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP843001-tamanrasset","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 143 cm - 56,29 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 143 cm - 56,29 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tamanrasset","description":"Wide width printed wallpapers, Tamanrasset. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","https://static.pierrefrey.com/uploads/product/packshots/f067f1a9-2f07-4b69-b33d-eb9400e5a62e/FQYBwNq4XM173p8sVxAa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp,https://static.pierrefrey.com/uploads/product/packshots/f067f1a9-2f07-4b69-b33d-eb9400e5a62e/FQYBwNq4XM173p8sVxAa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:47.106Z"}
+{"mfr_sku":"BP334022","pattern_name":"Shiva","color_name":"Cassonade","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP334022-shiva","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"132 cm / 51,96 inch","Repeat":"Free match","Weight":"194 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"B9979PPBRAQ7"},"width":"132 cm / 51,96 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"194 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Shiva","description":"Plains & semi plains - Paperbacked fabrics, Shiva. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:48.015Z"}
+{"mfr_sku":"FP600001","pattern_name":"Mille fleurs","color_name":"Printemps","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP600001-mille-fleurs","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Panoramic wallpapers","Artist":"Gael Davrinche","Sales Unit":"Full panoramic  280 cm x 300 cm ( 4 lengths  70 cm x 300 cm) - 110,23 in x 118,11 in( 4 lengths  27,55 in x 118,11 in)","Backing":"NON WOVEN","Composition":"-","Width":"70 cm / 27,55 inch","Repeat":"H: 280 cm - 110,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 4 panels"},"width":"70 cm / 27,55 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 280 cm - 110,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  280 cm x 300 cm ( 4 lengths  70 cm x 300 cm) - 110,23 in x 118,11 in( 4 lengths  27,55 in x 118,11 in)","roll_length":null,"collection":"Mille fleurs","description":"Small width printed wallpapers - Panoramic wallpapers, Mille fleurs. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp","https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp","https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp","https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp","https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp","https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp","https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp","https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp","https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/e7df5021-416c-4e55-b04e-0284fbb6320b/VAafS6h1Z5YOZ31LsYb1.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp,https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp,https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp,https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp,https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp,https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp,https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp,https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp,https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/e7df5021-416c-4e55-b04e-0284fbb6320b/VAafS6h1Z5YOZ31LsYb1.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/e7df5021-416c-4e55-b04e-0284fbb6320b/VAafS6h1Z5YOZ31LsYb1.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:18:48.649Z"}
+{"mfr_sku":"FP787003","pattern_name":"Fleurs de corail","color_name":"Terracotta","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP787003-fleurs-de-corail","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 22 cm - 8,66 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 22 cm - 8,66 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Fleurs de corail","description":"Small width printed wallpapers, Fleurs de corail. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:49.516Z"}
+{"mfr_sku":"FP032002","pattern_name":"Niamh","color_name":"Grege","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP032002-niahm","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 92 cm - 36,22 inch | Straight repeat","Weight":"320 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Hand screen printed","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY43"},"width":"134 cm / 52,75 inch","composition":"38 % Polyester - 33 % Viscose - 28 % Polyamide - 1 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 92 cm - 36,22 inch | Straight repeat","weight":"320 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Niamh","description":"Wide width printed wallpapers - Straws and similar materials, Niamh. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:50.498Z"}
+{"mfr_sku":"FP053001","pattern_name":"Fuji","color_name":"Mousse","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP053001-fuji","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Cotton","Width":"117 cm / 46,06 inch","Repeat":"H: 19 cm - 7,00 inch | V: 2 cm - 0,78 inch | Free match","Weight":"365 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY44"},"width":"117 cm / 46,06 inch","composition":"100 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 19 cm - 7,00 inch | V: 2 cm - 0,78 inch | Free match","weight":"365 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Fuji","description":"Paperbacked fabrics, Fuji. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:51.343Z"}
+{"mfr_sku":"FP787001","pattern_name":"Fleurs de corail","color_name":"Creme","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP787001-fleurs-de-corail","list_image":"https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 26 cm - 10,00 inch | V: 22 cm - 8,66 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Traditional printing technique"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 26 cm - 10,00 inch | V: 22 cm - 8,66 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Fleurs de corail","description":"Small width printed wallpapers, Fleurs de corail. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp","https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp","https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp","https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp","https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp","https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp","https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp","https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp","https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp","https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp","https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp","https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp","https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp","https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp","https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp","https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp","https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp","https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp","https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp","https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp","https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp","https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp","https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp","https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp","https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp","https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/e915f850-b26d-42cf-afec-1d8438680a3f/eperoIbE6K8kYLaI43Ks.webp,https://static.pierrefrey.com/uploads/product/packshots/515034d3-caab-4871-a5f7-1300bc732196/6Jr9Lnq1pSsB8BAHsTYl.webp,https://static.pierrefrey.com/uploads/product/packshots/e7e43e74-845f-470a-aff2-5cf43f261443/mPU0ua4Cas7xQ8aEPzfD.webp,https://static.pierrefrey.com/uploads/product/packshots/3248bf45-c03d-4179-b052-d8e3b5972d3d/EsMkm4uS1nwrGd2vm0cY.webp,https://static.pierrefrey.com/uploads/product/packshots/970b9468-6022-4a42-88ac-1fc623ce31c5/lV7OGCQmZfRf6qxkwZO5.webp,https://static.pierrefrey.com/uploads/product/packshots/59d640ec-25c0-4793-9051-0e95b0d66185/zzrzaVo2NRfzQ39XS1tg.webp,https://static.pierrefrey.com/uploads/product/packshots/4f2d8a49-4dc3-45db-a9a7-71ede16feb0b/f6d0pklT5wQIWSlrLgRJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c5f28a9f-561b-464e-ba24-af7948f955d7/tZ0wSg31opvjQ4u4TngW.webp,https://static.pierrefrey.com/uploads/product/packshots/b7c34354-6648-40b2-9ffd-eccb3bade720/6WOpPPzENXfeoaPjTx1G.webp,https://static.pierrefrey.com/uploads/product/packshots/32d2cdc7-e657-46cd-bfe4-236a8acad70b/GBotNCdAjoGP8LRfF5n2.webp,https://static.pierrefrey.com/uploads/product/packshots/61a6bd13-1028-40ba-8fa7-515ae77c3e83/l3lDF0Z4AEUOVWYlWyVi.webp,https://static.pierrefrey.com/uploads/product/packshots/4a9068b0-5929-43a0-8586-a02ca9fad1b3/voR2BFZZtdmVlbu60zQV.webp,https://static.pierrefrey.com/uploads/product/packshots/12fe7946-a3de-48a7-a05f-94e6d56ac233/fVkc2xMtRvH3vXQOHNpd.webp,https://static.pierrefrey.com/uploads/product/packshots/14847217-bc48-420d-9d23-320e5c97d75d/fjoM4IzmQ598QShQjwyJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c64aa251-2c63-445c-9eeb-5dac08a81b47/d4wJIeIfryDXTSlL2JU9.webp,https://static.pierrefrey.com/uploads/product/packshots/79f4de84-4255-4935-ac92-747fd2495b83/n80uaYfJw5qLBmP8KUFP.webp,https://static.pierrefrey.com/uploads/product/packshots/aa05d9a1-cf19-437a-ba1c-97ae831d7c74/73DNOqjopklRobgiwp8O.webp,https://static.pierrefrey.com/uploads/product/packshots/ca4ef830-3a0d-426a-8a35-8d76e9de861e/wuIjpSruy49grAGyGSVq.webp,https://static.pierrefrey.com/uploads/product/packshots/79fe02ab-4827-49a5-9208-e4a4d8017c19/ztm39BVjxQ2SIK8YOMhF.webp,https://static.pierrefrey.com/uploads/product/packshots/80effed9-4bff-48d3-91e4-6741199d4542/lXvAujgnJP7UYjPmpAsO.webp,https://static.pierrefrey.com/uploads/product/packshots/5abaf9a6-b1cf-4828-8c42-db571a594eb0/An3mpMIyzFyZdi1x6OTP.webp,https://static.pierrefrey.com/uploads/product/packshots/798f2e36-cf20-43a8-a514-ab59cc63312f/E36DjaZoAr9xgFn3mpT6.webp,https://static.pierrefrey.com/uploads/product/packshots/ddfef546-47ea-4b68-9654-d4a68a42190f/pLAsPWaciKnRvKZZs2G6.webp,https://static.pierrefrey.com/uploads/product/packshots/5f60c098-7c26-402d-b4a5-35d4c8789d7d/7Uk7OFwsYkcQ4Dzn6D1K.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8252de-dde4-4fd0-8e41-833d21877f08/bOUgP51OtUH2UMPybBuZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6d7cfcef-e903-4fd8-94d6-5048e01b16dd/5jn2NERZU109EbMUtFkj.webp,https://static.pierrefrey.com/uploads/product/packshots/8467c8dd-dc1d-454a-86b1-f05d319e65b5/FACNR4Xe3ZU8w390FgrS.webp,https://static.pierrefrey.com/uploads/product/packshots/d033b3dd-9836-436f-953a-7a82f51c2ec7/gFLKz8Nm7BeBIAbR9qdw.webp,https://static.pierrefrey.com/uploads/product/packshots/45e274ba-514f-46fd-9e77-d330909f6294/9N43RT2YhViWYCelLJGY.webp,https://static.pierrefrey.com/uploads/product/packshots/7b65a8d0-b1c5-436b-bdb9-a595ec84f3f0/K56uiyhoc7osLPj7fNCr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:52.130Z"}
+{"mfr_sku":"FP886002","pattern_name":"Pharaon","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP886002-pharaon","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ea06b771-9c66-4829-9cb8-d0a81ee20abd/MEFIA33Fau6AhR3rlIUz_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Collaboration":"Musée du Louvre","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 41 cm - 16,14 inch | Free match","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Book":"F9979PPFREY32 | F9979PPFREY37"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 41 cm - 16,14 inch | Free match","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Pharaon","description":"Small width printed wallpapers, Pharaon. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ea06b771-9c66-4829-9cb8-d0a81ee20abd/MEFIA33Fau6AhR3rlIUz.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ea06b771-9c66-4829-9cb8-d0a81ee20abd/MEFIA33Fau6AhR3rlIUz.webp","https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp","https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp","https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp","https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp","https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ea06b771-9c66-4829-9cb8-d0a81ee20abd/MEFIA33Fau6AhR3rlIUz.webp,https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp,https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp,https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp,https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp,https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:52.779Z"}
+{"mfr_sku":"LP103006","pattern_name":"L'arbre indien","color_name":"Moutarde","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP103006-larbre-indien","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  3,66 mts","Backing":"PAPER","Composition":"-","Width":"91 cm / 35,82 inch","Repeat":"H: 91 cm - 35,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","Weight":"160 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"91 cm / 35,82 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 91 cm - 35,00 inch | V: 96 cm - 37,79 inch | Half drop repeat","weight":"160 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  3,66 mts","roll_length":null,"collection":"L'arbre indien","description":"Small width printed wallpapers, L'arbre indien. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","https://static.pierrefrey.com/uploads/product/packshots/0c421e2d-53b9-4cee-a675-291be08762d0/5Ouvq8pADTmZyhqgkvxk.webp","https://static.pierrefrey.com/uploads/product/packshots/a212f17b-23b5-4d38-a16f-4a36ed029703/1ULtO8z5T7txMbheMJ3d.webp","https://static.pierrefrey.com/uploads/product/packshots/7d75e440-cedd-4f6a-96c5-cd0570975d2e/XjQ4REi6cPLp0nkQurvN.webp","https://static.pierrefrey.com/uploads/product/packshots/50b563bf-7d10-45d2-840c-157815243fd4/brJaYqrAXmuFvDsAYd5t.webp","https://static.pierrefrey.com/uploads/product/packshots/1eb63eff-b5e9-4b95-88ba-962431939661/8EtSb31vua84YiVDnOxg.webp","https://static.pierrefrey.com/uploads/product/packshots/0f3073f9-d5a0-4bf8-8b4f-ce25dd5410c6/v6hxUgR98ayFMXhp13SC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp,https://static.pierrefrey.com/uploads/product/packshots/0c421e2d-53b9-4cee-a675-291be08762d0/5Ouvq8pADTmZyhqgkvxk.webp,https://static.pierrefrey.com/uploads/product/packshots/a212f17b-23b5-4d38-a16f-4a36ed029703/1ULtO8z5T7txMbheMJ3d.webp,https://static.pierrefrey.com/uploads/product/packshots/7d75e440-cedd-4f6a-96c5-cd0570975d2e/XjQ4REi6cPLp0nkQurvN.webp,https://static.pierrefrey.com/uploads/product/packshots/50b563bf-7d10-45d2-840c-157815243fd4/brJaYqrAXmuFvDsAYd5t.webp,https://static.pierrefrey.com/uploads/product/packshots/1eb63eff-b5e9-4b95-88ba-962431939661/8EtSb31vua84YiVDnOxg.webp,https://static.pierrefrey.com/uploads/product/packshots/0f3073f9-d5a0-4bf8-8b4f-ce25dd5410c6/v6hxUgR98ayFMXhp13SC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:53.677Z"}
+{"mfr_sku":"BP353001","pattern_name":"Therese","color_name":"Caramel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP353001-therese","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"70 % Cotton - 30 % Polyester","Width":"140 cm / 55,11 inch","Repeat":"H: 28 cm - 11,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"330 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"B9979PPBRAQ9"},"width":"140 cm / 55,11 inch","composition":"70 % Cotton - 30 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 28 cm - 11,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"330 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Therese","description":"Wide width printed wallpapers - Paperbacked fabrics, Therese. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:54.613Z"}
+{"mfr_sku":"BP363001","pattern_name":"Marigold","color_name":"Emeraude","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP363001-marigold","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 61 cm - 24,01 inch | Straight repeat","Weight":"-","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 61 cm - 24,01 inch | Straight repeat","weight":"-","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Marigold","description":"Small width printed wallpapers, Marigold. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:55.528Z"}
+{"mfr_sku":"LP100003","pattern_name":"Le chariot chinois","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP100003-le-chariot-chinois","list_image":"https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  5,45 mts","Backing":"PAPER","Composition":"-","Width":"57 cm / 22,44 inch","Repeat":"H: 57 cm - 22,00 inch | V: 62 cm - 24,40 inch | Straight repeat","Weight":"140 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"57 cm / 22,44 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 57 cm - 22,00 inch | V: 62 cm - 24,40 inch | Straight repeat","weight":"140 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  5,45 mts","roll_length":null,"collection":"Le chariot chinois","description":"Small width printed wallpapers, Le chariot chinois. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:56.377Z"}
+{"mfr_sku":"FP648010","pattern_name":"Ernesto","color_name":"Vanille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP648010-ernesto","list_image":"https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9_251x335_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"85 % Polyester - 15 % Acrylic","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"270 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY35"},"width":"140 cm / 55,11 inch","composition":"85 % Polyester - 15 % Acrylic","material":"NON WOVEN","pattern_repeat":"Free match","weight":"270 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ernesto","description":"Plains & semi plains - Paperbacked fabrics, Ernesto. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:57.078Z"}
+{"mfr_sku":"BP205001","pattern_name":"Wallpaper vermicule","color_name":"Antique Red","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP205001-wallpaper-vermicule","list_image":"https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,10 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 12 cm - 4,00 inch | V: 9 cm - 3,54 inch | Straight repeat","Weight":"170 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Soaking time before hanging: maximum 2 minutes."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 12 cm - 4,00 inch | V: 9 cm - 3,54 inch | Straight repeat","weight":"170 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,10 mts","roll_length":null,"collection":"Wallpaper vermicule","description":"Small width printed wallpapers, Wallpaper vermicule. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/83dc8673-b844-458e-aae1-a97d7380f2b6/V0FKA2pCabcXygvXlLgi.webp","https://static.pierrefrey.com/uploads/product/packshots/b3b69585-8ed3-4b55-b785-327ac133c7e3/96pkrCnNU76p9EFqdbRh.webp","https://static.pierrefrey.com/uploads/product/packshots/2929a256-661d-43a1-8a87-f318aac0896b/DZa1lUNJ8hC81Txs97S6.webp","https://static.pierrefrey.com/uploads/product/packshots/dc8e8368-4575-4060-8e6e-cd0b22b7cd40/keaPWjDUvwHa79LK3yxa.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/83dc8673-b844-458e-aae1-a97d7380f2b6/V0FKA2pCabcXygvXlLgi.webp,https://static.pierrefrey.com/uploads/product/packshots/b3b69585-8ed3-4b55-b785-327ac133c7e3/96pkrCnNU76p9EFqdbRh.webp,https://static.pierrefrey.com/uploads/product/packshots/2929a256-661d-43a1-8a87-f318aac0896b/DZa1lUNJ8hC81Txs97S6.webp,https://static.pierrefrey.com/uploads/product/packshots/dc8e8368-4575-4060-8e6e-cd0b22b7cd40/keaPWjDUvwHa79LK3yxa.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:58.006Z"}
+{"mfr_sku":"BP363004","pattern_name":"Marigold","color_name":"Epice","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP363004-marigold","list_image":"https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 61 cm - 24,01 inch | Straight repeat","Weight":"-","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 61 cm - 24,01 inch | Straight repeat","weight":"-","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Marigold","description":"Small width printed wallpapers, Marigold. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:59.069Z"}
+{"mfr_sku":"FP405019","pattern_name":"Zia","color_name":"MinéRal","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP405019-zia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"188 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"188 gr / m²","certifications":"EUROCLASS C-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Zia","description":"Plains & semi plains - Paperbacked fabrics, Zia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp","https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp","https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp","https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp","https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp","https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp","https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp,https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp,https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp,https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp,https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp,https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp,https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:18:59.770Z"}
+{"mfr_sku":"W4669002","pattern_name":"Wallpaper radzimir","color_name":"Coral","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4669002-wallpaper-radzimir","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 90 cm - 35,43 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 90 cm - 35,43 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper radzimir","description":"Small width printed wallpapers, Wallpaper radzimir. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:00.685Z"}
+{"mfr_sku":"FP643001","pattern_name":"Ramane","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP643001-ramane","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"51 % Linen - 49 % Polyester","Width":"138 cm / 54,33 inch","Repeat":"H: 72 cm - 28,00 inch | V: 68 cm - 26,77 inch | Free match","Weight":"380 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect"},"width":"138 cm / 54,33 inch","composition":"51 % Linen - 49 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 72 cm - 28,00 inch | V: 68 cm - 26,77 inch | Free match","weight":"380 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ramane","description":"Paperbacked fabrics, Ramane. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp","https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp","https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp","https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp","https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp","https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp","https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp","https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp","https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp","https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp","https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp","https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp","https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp","https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp","https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp","https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp","https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp","https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp","https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp","https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp","https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp","https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp","https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp","https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp","https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp","https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp","https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp","https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp","https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp","https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp","https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp","https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp","https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp","https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ec37de12-2fc0-4a90-93e1-d96162b3072c/lZW0VI0SyZJz3LcBdKvV.webp,https://static.pierrefrey.com/uploads/product/packshots/c81eda68-d931-4fe7-8d63-677c425895fa/BZwY7XcP9sxontbP0zyX.webp,https://static.pierrefrey.com/uploads/product/packshots/1e8f6d20-4f04-480a-a757-cf4ce5f96dbd/m6UlKAnQGz54ieECodqp.webp,https://static.pierrefrey.com/uploads/product/packshots/209dda9b-8166-49f4-a7e8-80df337d1d4a/5AqUZUM1WT2GiiwAt4R9.webp,https://static.pierrefrey.com/uploads/product/packshots/c5195747-c26a-43f7-878e-616d190fa005/vbKYhVcjJBiDBC8VZXNS.webp,https://static.pierrefrey.com/uploads/product/packshots/4205e782-8218-4ab8-92e6-8d648b8c5ec6/pA6uXuxiQWGEa3iv7jbW.webp,https://static.pierrefrey.com/uploads/product/packshots/a3bedc14-31dc-43d5-b125-45d6eca78ef4/Q4wjo6YMDNJbMk93mMbo.webp,https://static.pierrefrey.com/uploads/product/packshots/7670598f-e97d-4807-b462-4af0ffef198e/Pe9WvrCZUx9ft3HL98Ik.webp,https://static.pierrefrey.com/uploads/product/packshots/bc3c2db7-46c3-488e-9ab9-e7b75a261da6/GcMh4fRgP3OyYOKk6VC0.webp,https://static.pierrefrey.com/uploads/product/packshots/9069e5ae-762b-4d95-9c28-6bc5e689001b/ggqjmQfIbcctDT3HjVKg.webp,https://static.pierrefrey.com/uploads/product/packshots/2dc686a4-a3cf-4498-8b3e-c5a29a5d4d1a/FRpKjxm0AVbhVGvJN7dS.webp,https://static.pierrefrey.com/uploads/product/packshots/c24a6d92-6c40-413b-80b4-646da14f10d7/mvJ3Wz2dH7Z8Yq4fpkPk.webp,https://static.pierrefrey.com/uploads/product/packshots/25ae56a0-1a35-4411-81a8-f4fa78d7fe7f/mHIrVK1XmeDep9YNGBgv.webp,https://static.pierrefrey.com/uploads/product/packshots/14148d4f-ab6b-40ed-9f66-3433d3f8b5ff/BRqICkfmHGwqJmXiGx6z.webp,https://static.pierrefrey.com/uploads/product/packshots/b5b74f04-5805-4fd6-972f-95de5a5645f1/kWKlOkBnucV9fLxLpkad.webp,https://static.pierrefrey.com/uploads/product/packshots/b671e973-cc33-42a2-9575-a76840939c9d/bnf3MHrkmcZASPNwI1cT.webp,https://static.pierrefrey.com/uploads/product/packshots/e095346e-7f2e-4171-87ed-65c1381a9331/1yqptiNceLKQeetergHB.webp,https://static.pierrefrey.com/uploads/product/packshots/21d60fbf-b3a0-44a2-aed0-fde5f37b2c14/3YKvg0R3QsmFPqcnBQbd.webp,https://static.pierrefrey.com/uploads/product/packshots/222560c3-cf76-4de0-b76e-31535c52933b/Do1stYIMKl1NdXwvUAdI.webp,https://static.pierrefrey.com/uploads/product/packshots/1e3a789b-c592-4e6a-9917-bfcd3eb4c143/Xm5O4uWPZvOBwaiKZ9Ep.webp,https://static.pierrefrey.com/uploads/product/packshots/79343889-0391-4ef7-b1d8-3f2e77469e01/9MUcQrxTyFDS69ayXam0.webp,https://static.pierrefrey.com/uploads/product/packshots/1fe5ee95-acdd-4ab6-bbe4-13bfd656908f/PT0OxCDZVQIl2VB0waTx.webp,https://static.pierrefrey.com/uploads/product/packshots/2e8c3606-2837-4338-8e84-e047e68bc578/mamaFyasbTtXUEsFImLe.webp,https://static.pierrefrey.com/uploads/product/packshots/872cb47d-b253-4f02-9634-3b0eda5b18ab/r4UeKHlxxzKhQ2ovtehE.webp,https://static.pierrefrey.com/uploads/product/packshots/a2e06bbc-e260-488a-bd6e-fc4975cb2313/tqC7oPLfAMmj3SJ5S1HR.webp,https://static.pierrefrey.com/uploads/product/packshots/eb314eab-fa04-4f3c-a8fe-af8c513bef47/o97ZJxId9007ChGoNKP9.webp,https://static.pierrefrey.com/uploads/product/packshots/a89dcbf0-b5f4-401c-88dd-6f857066f705/YWhikUFCvvHRI6eaFMg1.webp,https://static.pierrefrey.com/uploads/product/packshots/09b1e69e-f9fa-49a3-b576-df3c699c5135/DfoAAWHDySqot0ReBEWv.webp,https://static.pierrefrey.com/uploads/product/packshots/59f8aed2-3b5f-45d3-8d53-7df457f7c1a9/afzf8wltaJ7zYgONPHod.webp,https://static.pierrefrey.com/uploads/product/packshots/894bc276-48c3-4178-bafb-bbe8c809752c/0JQDu58BWt1AGmOwklit.webp,https://static.pierrefrey.com/uploads/product/packshots/508dcf11-372a-4123-b9b4-16dc57cf0573/2pdPLPS47jSsNjTDRdj4.webp,https://static.pierrefrey.com/uploads/product/packshots/28717c71-dbba-48a8-9026-ab7d88923df8/dfqkpJznyAyweI3hBrMV.webp,https://static.pierrefrey.com/uploads/product/packshots/121f0188-3305-488d-a423-8004d4eb553f/yKPa4BupogmNNHuOQwUY.webp,https://static.pierrefrey.com/uploads/product/packshots/499ab4da-ceb9-4c37-ad52-2495963db445/M4hf0A1hcANiXdnck7Lv.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:01.976Z"}
+{"mfr_sku":"FP405014","pattern_name":"Zia","color_name":"GrèGe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP405014-zia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Silk","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"188 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"130 cm / 51,18 inch","composition":"100 % Silk","material":"NON WOVEN","pattern_repeat":"Free match","weight":"188 gr / m²","certifications":"EUROCLASS C-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Zia","description":"Plains & semi plains - Paperbacked fabrics, Zia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp","https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp","https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp","https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp","https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp","https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp","https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ec816d63-76ff-4477-be8c-0fdab96eecb3/vLwAyk4QAiHsZ1SGm6tB.webp,https://static.pierrefrey.com/uploads/product/packshots/9f990a8c-200a-4cd2-8ef4-04e7e66d06cf/qr9BuxJcMQ46u1tK0YYA.webp,https://static.pierrefrey.com/uploads/product/packshots/adaf856c-c0c1-4b5f-a27f-a0f04bdc7606/S7YlRn8GFCoA3GfI75dE.webp,https://static.pierrefrey.com/uploads/product/packshots/0d3b0467-e9f9-4c1c-9328-49b415646340/ObqIiisGSYBRhhBDPk9v.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec44e3d-54d0-4dc4-8829-320ac43a5359/XXECnG5ArlD4iJXwxFy5.webp,https://static.pierrefrey.com/uploads/product/packshots/bd8898e2-c778-41ac-aa81-d3f302d9efb6/n5wGZt5uOIz9iBiwLm8R.webp,https://static.pierrefrey.com/uploads/product/packshots/eb90fae9-2dca-4a58-8595-abf96ac6410b/3bylYUlRlDc9yjadueTK.webp,https://static.pierrefrey.com/uploads/product/packshots/70960bf8-90ea-42af-b9c0-af772ab9030d/TvL2p6CrQ0i8WfrPEDAq.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:02.758Z"}
+{"mfr_sku":"FP167001","pattern_name":"Wallpaper papillons","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP167001-wallpaper-papillons","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 41 cm - 16,14 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 41 cm - 16,14 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper papillons","description":"Small width printed wallpapers, Wallpaper papillons. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/7fe07972-81df-42a8-bfb2-d36588b843c2/ZgJmx80YsythnJWaIdJG.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/7fe07972-81df-42a8-bfb2-d36588b843c2/ZgJmx80YsythnJWaIdJG.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:03.869Z"}
+{"mfr_sku":"FP194003","pattern_name":"Beauregard","color_name":"Jute","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP194003-beauregard","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 91 cm - 35,82 inch | Half drop repeat","Weight":"245 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 91 cm - 35,82 inch | Half drop repeat","weight":"245 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Beauregard","description":"Small width printed wallpapers, Beauregard. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:04.700Z"}
+{"mfr_sku":"BP327002","pattern_name":"Les ombrelles rayure","color_name":"Lin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP327002-les-ombrelles-rayure","list_image":"https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 1 cm - | Free match","Weight":"190 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 1 cm - | Free match","weight":"190 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Les ombrelles rayure","description":"Small width printed wallpapers, Les ombrelles rayure. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:05.849Z"}
+{"mfr_sku":"FP939004","pattern_name":"Owen","color_name":"Cannelle","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP939004-owen","list_image":"https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Jute","Width":"120 cm / 47,24 inch","Repeat":"Free match","Weight":"424 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"CFA recommended | Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"120 cm / 47,24 inch","composition":"100 % Jute","material":"NON WOVEN","pattern_repeat":"Free match","weight":"424 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Owen","description":"Plains & semi plains - Paperbacked fabrics, Owen. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:06.712Z"}
+{"mfr_sku":"W4864006","pattern_name":"Wallpaper nakai","color_name":"Pistacchio","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4864006-wallpaper-nakai","list_image":"https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 59 cm - 23,22 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 59 cm - 23,22 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper nakai","description":"Small width printed wallpapers, Wallpaper nakai. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","https://static.pierrefrey.com/uploads/product/packshots/e10dad45-46a8-4d65-9b6c-ae92fb743c13/KzELlwvD40J1DVPJc3UR.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp,https://static.pierrefrey.com/uploads/product/packshots/e10dad45-46a8-4d65-9b6c-ae92fb743c13/KzELlwvD40J1DVPJc3UR.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:07.457Z"}
+{"mfr_sku":"FP837001","pattern_name":"Carnaval","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP837001-carnaval","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"136 cm / 53,54 inch","Repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY28"},"width":"136 cm / 53,54 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 68 cm - 26,00 inch | V: 68 cm - 26,77 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Carnaval","description":"Wide width printed wallpapers, Carnaval. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp","https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp","https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp","https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp","https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp","https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp","https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp","https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp","https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp,https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp,https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp,https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp,https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp,https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp,https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp,https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp,https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:08.094Z"}
+{"mfr_sku":"FP464002","pattern_name":"Cirrus","color_name":"Naturel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP464002-cirrus","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ee2f4913-48c9-4efb-b0d3-3533162acc4c/LDTeob7HH7CzHsFHE5n8_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"140 cm / 55,11 inch","Repeat":"H: 73 cm - 28,00 inch | V: 131 cm - 51,57 inch | No side match","Weight":"340 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY10"},"width":"140 cm / 55,11 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 73 cm - 28,00 inch | V: 131 cm - 51,57 inch | No side match","weight":"340 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Cirrus","description":"Paperbacked fabrics, Cirrus. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ee2f4913-48c9-4efb-b0d3-3533162acc4c/LDTeob7HH7CzHsFHE5n8.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ee2f4913-48c9-4efb-b0d3-3533162acc4c/LDTeob7HH7CzHsFHE5n8.webp","https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp","https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp","https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp","https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp","https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ee2f4913-48c9-4efb-b0d3-3533162acc4c/LDTeob7HH7CzHsFHE5n8.webp,https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp,https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp,https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp,https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp,https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:08.845Z"}
+{"mfr_sku":"FP946006","pattern_name":"Toile de nantes intisse","color_name":"Ocean","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP946006-toile-de-nantes-intisse","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"127 cm / 50,00 inch","Repeat":"H: 42 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Flat screen printed","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"127 cm / 50,00 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 42 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Toile de nantes intisse","description":"Wide width printed wallpapers, Toile de nantes intisse. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp","https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp","https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp","https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp","https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp","https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp,https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp,https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp,https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp,https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp,https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:09.662Z"}
+{"mfr_sku":"FP167003","pattern_name":"Wallpaper papillons","color_name":"Bleu","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP167003-wallpaper-papillons","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 41 cm - 16,14 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 41 cm - 16,14 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper papillons","description":"Small width printed wallpapers, Wallpaper papillons. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/7fe07972-81df-42a8-bfb2-d36588b843c2/ZgJmx80YsythnJWaIdJG.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/7fe07972-81df-42a8-bfb2-d36588b843c2/ZgJmx80YsythnJWaIdJG.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:10.487Z"}
+{"mfr_sku":"BP203004","pattern_name":"Wallpaper bengali","color_name":"Old Blue","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP203004-wallpaper-bengali","list_image":"https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  5,45 mts","Backing":"PAPER","Composition":"-","Width":"60 cm / 23,62 inch","Repeat":"V: 69 cm - 27,16 inch | Straight repeat","Weight":"204 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"60 cm / 23,62 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 69 cm - 27,16 inch | Straight repeat","weight":"204 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  5,45 mts","roll_length":null,"collection":"Wallpaper bengali","description":"Small width printed wallpapers, Wallpaper bengali. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/2b233c4d-1300-45ee-8566-08d70e3cb7a3/ocUOmplZEa0KisuQu4lP.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/2b233c4d-1300-45ee-8566-08d70e3cb7a3/ocUOmplZEa0KisuQu4lP.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:11.257Z"}
+{"mfr_sku":"FP074001","pattern_name":"Tapa","color_name":"Ocre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP074001-tapa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/eea775b2-dd0e-4077-9986-1f670b53e873/xigIHvZq62xP7dayHhC6_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"129 cm / 50,78 inch","Repeat":"H: 129 cm - 50,00 inch | V: 139 cm - 54,72 inch | Straight repeat","Weight":"245 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY45"},"width":"129 cm / 50,78 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 129 cm - 50,00 inch | V: 139 cm - 54,72 inch | Straight repeat","weight":"245 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tapa","description":"Paperbacked fabrics - Printed wallpapers, Tapa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/eea775b2-dd0e-4077-9986-1f670b53e873/xigIHvZq62xP7dayHhC6.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/eea775b2-dd0e-4077-9986-1f670b53e873/xigIHvZq62xP7dayHhC6.webp","https://static.pierrefrey.com/uploads/product/packshots/1f9f12da-4f28-43d8-90b0-a22b0b3f72ea/L97enueRN2cn5jjnrcJ9.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/cce54c5a-b387-44fe-822b-f6c0bc0e5d3b/vVd32oKjFONMGFaZsiIr.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/eea775b2-dd0e-4077-9986-1f670b53e873/xigIHvZq62xP7dayHhC6.webp,https://static.pierrefrey.com/uploads/product/packshots/1f9f12da-4f28-43d8-90b0-a22b0b3f72ea/L97enueRN2cn5jjnrcJ9.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/cce54c5a-b387-44fe-822b-f6c0bc0e5d3b/vVd32oKjFONMGFaZsiIr.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:12.122Z"}
+{"mfr_sku":"LP104001","pattern_name":"Paradis perdu","color_name":"Automne","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP104001-paradis-perdu","list_image":"https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 69 cm - 27,00 inch | V: 66 cm - 25,98 inch | Half drop repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 69 cm - 27,00 inch | V: 66 cm - 25,98 inch | Half drop repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Paradis perdu","description":"Small width printed wallpapers, Paradis perdu. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:12.998Z"}
+{"mfr_sku":"BP358001","pattern_name":"Mandalay coordonne","color_name":"Hortensia","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP358001-mandalay-coordonne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"133 cm / 52,36 inch","Repeat":"H: 133 cm - 52,00 inch | V: 34 cm - 13,38 inch | Straight repeat","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Book":"B9979PPBRAQ8"},"width":"133 cm / 52,36 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 133 cm - 52,00 inch | V: 34 cm - 13,38 inch | Straight repeat","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Mandalay coordonne","description":"Wide width printed wallpapers - Paperbacked fabrics, Mandalay coordonne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:14.010Z"}
+{"mfr_sku":"FP885005","pattern_name":"Sennefer","color_name":"Nil","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP885005-sennefer","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ef999394-65b5-44fc-b144-7b2bfc4959aa/KzRt4GARjitb8ZKB8PfW_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Collaboration":"Musée du Louvre","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 58 cm - 22,83 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Book":"F9979PPFREY32 | F9979PPFREY37"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 58 cm - 22,83 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Sennefer","description":"Small width printed wallpapers, Sennefer. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ef999394-65b5-44fc-b144-7b2bfc4959aa/KzRt4GARjitb8ZKB8PfW.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ef999394-65b5-44fc-b144-7b2bfc4959aa/KzRt4GARjitb8ZKB8PfW.webp","https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp","https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp","https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp","https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp","https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp","https://static.pierrefrey.com/uploads/product/packshots/83f0e731-9b4a-47e2-8f0c-346071246926/bDvZ5KztvJRwDb4pFCNv.webp","https://static.pierrefrey.com/uploads/product/packshots/7686479b-8fc6-41aa-a786-cdacdd9d191a/QBx8oCKTpXB6lcqPxRY0.webp","https://static.pierrefrey.com/uploads/product/packshots/7b6e4a81-8370-468e-86aa-f54b34e66a95/979oGteHcIZSPCH05S2W.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ef999394-65b5-44fc-b144-7b2bfc4959aa/KzRt4GARjitb8ZKB8PfW.webp,https://static.pierrefrey.com/uploads/product/packshots/375e001a-95b8-4706-adc1-56d997ee329e/HrWw1x3OnCIri8RgbqcI.webp,https://static.pierrefrey.com/uploads/product/packshots/8f32faf9-a975-4e7f-acd5-cc014b97229a/u66nRkKqXfZBiQWApYiz.webp,https://static.pierrefrey.com/uploads/product/packshots/d5c8db83-7a9c-4959-983a-00937ba3e9a8/A6dRIQp4r9nkuUbAIARS.webp,https://static.pierrefrey.com/uploads/product/packshots/437a2d03-f2c9-44bd-8711-81d67198de39/5pLy2iCUwX6cm3ctQBwr.webp,https://static.pierrefrey.com/uploads/product/packshots/01e13a0f-e351-481d-a838-b4cf36280c79/pgS1UMygTRPL5CY7PCHD.webp,https://static.pierrefrey.com/uploads/product/packshots/83f0e731-9b4a-47e2-8f0c-346071246926/bDvZ5KztvJRwDb4pFCNv.webp,https://static.pierrefrey.com/uploads/product/packshots/7686479b-8fc6-41aa-a786-cdacdd9d191a/QBx8oCKTpXB6lcqPxRY0.webp,https://static.pierrefrey.com/uploads/product/packshots/7b6e4a81-8370-468e-86aa-f54b34e66a95/979oGteHcIZSPCH05S2W.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:14.703Z"}
+{"mfr_sku":"FP431002","pattern_name":"Les aeronefs","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP431002-les-aeronefs","list_image":"https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 73 cm - 28,74 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY9"},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 73 cm - 28,74 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Les aeronefs","description":"Wide width printed wallpapers, Les aeronefs. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp","https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp","https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp","https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp","https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp","https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp","https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp","https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp","https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp","https://static.pierrefrey.com/uploads/product/packshots/f80f2c6e-5671-43e0-a501-5e5ecae08f34/csG5TwP8qPoQyNfnkZPy.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/efae1ddf-a13d-438b-bc8a-1e233afa699c/mOK83TSldW7bSgk6SHHs.webp,https://static.pierrefrey.com/uploads/product/packshots/918f8da3-add9-467c-b888-21df6793df94/ejRHYrE55H8vcsbaYBjW.webp,https://static.pierrefrey.com/uploads/product/packshots/497df164-5afc-44db-a40c-abc76f790bf9/5Cot92D1vqsAOSLgQLEl.webp,https://static.pierrefrey.com/uploads/product/packshots/8375273d-579f-41ef-b969-6dc5110d308e/SSlPxRDP5yL7Bh6kQmcm.webp,https://static.pierrefrey.com/uploads/product/packshots/da40229a-921b-425d-9653-42de91d1ed34/dQhPJ4Htph9M4RGOOt19.webp,https://static.pierrefrey.com/uploads/product/packshots/436f54c5-80c4-47b8-be8d-ca1bf8fdf5cf/vc8rxTEjAvq0phZCv3uI.webp,https://static.pierrefrey.com/uploads/product/packshots/cb64dc04-def8-4fed-a6d2-c9bf768e0ac2/aQLDAeR0DVsX3iTZWIwi.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0d38c2-ae3c-41d1-a3eb-4b0257a7f552/oT4xNzsnSVWYbHexupTh.webp,https://static.pierrefrey.com/uploads/product/packshots/b653e684-5fef-46ee-a846-c0605678d95d/RmehbwCBMHQ3aF2VvU17.webp,https://static.pierrefrey.com/uploads/product/packshots/86aaa070-2c8b-42c7-883b-d427280b38ee/65G3pFYKKkXldFM61TLM.webp,https://static.pierrefrey.com/uploads/product/packshots/f80f2c6e-5671-43e0-a501-5e5ecae08f34/csG5TwP8qPoQyNfnkZPy.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:15.323Z"}
+{"mfr_sku":"BP365001","pattern_name":"Pontchartrain coordonne","color_name":"Pivoin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP365001-pontchartrain-coordonne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 32 cm - 12,59 inch | Straight repeat","Weight":"155 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 32 cm - 12,59 inch | Straight repeat","weight":"155 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Pontchartrain coordonne","description":"Small width printed wallpapers, Pontchartrain coordonne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/ff4f3828-a884-473e-b206-ef9fd2f3cb84/t3ploOwZhYx5Q9rzKAQh.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/ff4f3828-a884-473e-b206-ef9fd2f3cb84/t3ploOwZhYx5Q9rzKAQh.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:16.281Z"}
+{"mfr_sku":"LP110001","pattern_name":"Taraz","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP110001-taraz","list_image":"https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 69 cm - 27,00 inch | V: 82 cm - 32,28 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 69 cm - 27,00 inch | V: 82 cm - 32,28 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Taraz","description":"Small width printed wallpapers, Taraz. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:17.072Z"}
+{"mfr_sku":"FP064004","pattern_name":"Costa","color_name":"Galet","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP064004-costa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"31 % Polyester - 26 % Cotton - 18 % Viscose - 17 % Polyamide - 6 % Acrylic - 2 % Linen","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"550 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Information":"Panel effect","Book":"F9979PPFREY45"},"width":"137 cm / 53,93 inch","composition":"31 % Polyester - 26 % Cotton - 18 % Viscose - 17 % Polyamide - 6 % Acrylic - 2 % Linen","material":"NON WOVEN","pattern_repeat":"Free match","weight":"550 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Costa","description":"Paperbacked fabrics, Costa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:17.818Z"}
+{"mfr_sku":"FP481003","pattern_name":"Magellan","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP481003-magellan","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Non-woven","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 170 cm - 66,92 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"100 % Non-woven","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 170 cm - 66,92 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Magellan","description":"Wide width printed wallpapers, Magellan. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp","https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp","https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp","https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp","https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp","https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp","https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp","https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp","https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp","https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp","https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp","https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp","https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp","https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp","https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp","https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f11e36b6-7bbb-4262-9d1e-992c2f88a5a9/DXWA6gwfxVZ8kpks3B9u.webp,https://static.pierrefrey.com/uploads/product/packshots/c35a2119-4666-4124-bc89-c8cd99566d38/oa9dBt2Rz03rjrJJ78xx.webp,https://static.pierrefrey.com/uploads/product/packshots/c68a2b5b-ef22-4c4a-9ff2-321472c1dee4/LLzXfRhldQLechQ2gmA6.webp,https://static.pierrefrey.com/uploads/product/packshots/30939980-7363-4e34-ba85-a414d006eeda/pqVpHbFL0L1jiXAgqEoN.webp,https://static.pierrefrey.com/uploads/product/packshots/3a060ffa-cedd-4346-a798-40a2147db1bd/kIev388iCM4CNu7kkImN.webp,https://static.pierrefrey.com/uploads/product/packshots/1731b606-9d36-4344-b3b8-1e19f6e87fd3/rqnF9rdLeHM4cEnAL7tF.webp,https://static.pierrefrey.com/uploads/product/packshots/96dcccf3-26c5-4dcb-9075-7bcde7c9537a/mTTfVC19KOAUxbyNNyAT.webp,https://static.pierrefrey.com/uploads/product/packshots/e63a16d4-097a-483e-8d34-ead6c759cf1f/ahgX5x8rN9l4YD8dkoDd.webp,https://static.pierrefrey.com/uploads/product/packshots/34ee33b4-79f1-429d-9759-d4882561a9e6/iWWrU7bG0mkxojDLIqTg.webp,https://static.pierrefrey.com/uploads/product/packshots/95b75610-46ee-4a40-9b77-c8161904fc39/axJq2o7kQ8FyubwggXea.webp,https://static.pierrefrey.com/uploads/product/packshots/cd2a3a56-900e-4c87-a029-de6a43786798/pm29xcgH0YY4YESAqhG2.webp,https://static.pierrefrey.com/uploads/product/packshots/b306c6e0-08f5-4c24-857d-c54c4c94c702/BjRDM8NifDmm6qAxYlZ2.webp,https://static.pierrefrey.com/uploads/product/packshots/2ea055ec-e931-4a46-acf5-322492a59243/Rc9HZkb4VIy3iRtFoOz4.webp,https://static.pierrefrey.com/uploads/product/packshots/cb54c53b-77a9-4332-b77e-3f71154fe567/YnKTyfbtAncwERqInoVp.webp,https://static.pierrefrey.com/uploads/product/packshots/3eefa003-f30c-4adc-8e90-c3851cea92c8/O2l3qXGs09l9TfV5xbQP.webp,https://static.pierrefrey.com/uploads/product/packshots/8123170b-80d6-4eb4-ba68-0ffda5cc190f/zuOrxwYw0z6KKwzCa72k.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:18.536Z"}
+{"mfr_sku":"W4671A04","pattern_name":"Wallpaper chateaubriand","color_name":"Taupe","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4671A04-wallpaper-chateaubriand","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 103 cm - 40,55 inch | Half drop repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 103 cm - 40,55 inch | Half drop repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper chateaubriand","description":"Small width printed wallpapers, Wallpaper chateaubriand. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:19.279Z"}
+{"mfr_sku":"FP196001","pattern_name":"Lavezzi","color_name":"Linen","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP196001-lavezzi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 87 cm - 34,25 inch | Half drop repeat","Weight":"202 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 87 cm - 34,25 inch | Half drop repeat","weight":"202 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Lavezzi","description":"Small width printed wallpapers, Lavezzi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:20.159Z"}
+{"mfr_sku":"BP376001","pattern_name":"Le chant du coq","color_name":"Nacre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP376001-le-chant-du-coq","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ_251x335_webp.webp","specs":{"Type":"Paperbacked fabrics - Panoramic wallpapers","Sales Unit":"Full panoramic  139 cm x 304 cm ( 1 lengths 139 cm x 304 cm) -  54,72 in x 119,68 in( 1 lengths  54,72 in x 119,68 in)","Backing":"NON WOVEN","Composition":"100 % Polyester","Width":"139 cm / 54,72 inch","Repeat":"H: 139 cm - 54,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"563 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Good lightfastness","Information":"Panel effect"},"width":"139 cm / 54,72 inch","composition":"100 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 139 cm - 54,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"563 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Full panoramic  139 cm x 304 cm ( 1 lengths 139 cm x 304 cm) -  54,72 in x 119,68 in( 1 lengths  54,72 in x 119,68 in)","roll_length":null,"collection":"Le chant du coq","description":"Paperbacked fabrics - Panoramic wallpapers, Le chant du coq. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/f1f24c90-27ba-4d45-b50d-66411801571b/wcBBxBYoz1DfOlNVTVhD.png"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/f1f24c90-27ba-4d45-b50d-66411801571b/wcBBxBYoz1DfOlNVTVhD.png","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/f1f24c90-27ba-4d45-b50d-66411801571b/wcBBxBYoz1DfOlNVTVhD.png","product_type":"wallcovering","scraped_at":"2026-07-07T20:19:21.115Z"}
+{"mfr_sku":"FP475008","pattern_name":"Kimono","color_name":"Naturel","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP475008-kimono","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f25bd3cf-fe96-4f9c-b1ac-116c7fdbdfeb/I77fwpVZHuKGPdljGcr7_335x251_webp.webp","specs":{"Type":"Vinyls - Plains & semi plains","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Extra washable | Stain and impact resistant"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Kimono","description":"Vinyls - Plains & semi plains, Kimono. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f25bd3cf-fe96-4f9c-b1ac-116c7fdbdfeb/I77fwpVZHuKGPdljGcr7.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f25bd3cf-fe96-4f9c-b1ac-116c7fdbdfeb/I77fwpVZHuKGPdljGcr7.webp","https://static.pierrefrey.com/uploads/product/packshots/b858d4ec-2a07-4820-95e5-96d6efa4be23/orkUPtU4OlmQZ1G3bW47.webp","https://static.pierrefrey.com/uploads/product/packshots/c60eb097-969a-4cb2-98cf-78bd3dc5665a/NJaT5p30fzjrUlPC4pCM.webp","https://static.pierrefrey.com/uploads/product/packshots/f303a333-51de-451e-8867-04b1e6efbe4f/ricOYx8mhrMhux6CxAa0.webp","https://static.pierrefrey.com/uploads/product/packshots/97de0f96-cf5e-45ac-93a4-4b278418872e/MqLkk8UknSolm4ynNHoc.webp","https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp","https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp","https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp","https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp","https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f25bd3cf-fe96-4f9c-b1ac-116c7fdbdfeb/I77fwpVZHuKGPdljGcr7.webp,https://static.pierrefrey.com/uploads/product/packshots/b858d4ec-2a07-4820-95e5-96d6efa4be23/orkUPtU4OlmQZ1G3bW47.webp,https://static.pierrefrey.com/uploads/product/packshots/c60eb097-969a-4cb2-98cf-78bd3dc5665a/NJaT5p30fzjrUlPC4pCM.webp,https://static.pierrefrey.com/uploads/product/packshots/f303a333-51de-451e-8867-04b1e6efbe4f/ricOYx8mhrMhux6CxAa0.webp,https://static.pierrefrey.com/uploads/product/packshots/97de0f96-cf5e-45ac-93a4-4b278418872e/MqLkk8UknSolm4ynNHoc.webp,https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp,https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp,https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp,https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp,https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:21.780Z"}
+{"mfr_sku":"FP921001","pattern_name":"Rita","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP921001-rita","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"88 % Linen - 12 % Viscose","Width":"137 cm / 53,93 inch","Repeat":"Free match","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect | Inherent irregularities from the natural fiber","Book":"F9979PPFREY36"},"width":"137 cm / 53,93 inch","composition":"88 % Linen - 12 % Viscose","material":"NON WOVEN","pattern_repeat":"Free match","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Rita","description":"Plains & semi plains - Paperbacked fabrics, Rita. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:22.595Z"}
+{"mfr_sku":"FP475011","pattern_name":"Kimono","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP475011-kimono","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f303a333-51de-451e-8867-04b1e6efbe4f/ricOYx8mhrMhux6CxAa0_335x251_webp.webp","specs":{"Type":"Vinyls - Plains & semi plains","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"70 cm / 27,55 inch","Repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Extra washable | Stain and impact resistant"},"width":"70 cm / 27,55 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 70 cm - 27,00 inch | V: 64 cm - 25,19 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Kimono","description":"Vinyls - Plains & semi plains, Kimono. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f303a333-51de-451e-8867-04b1e6efbe4f/ricOYx8mhrMhux6CxAa0.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f303a333-51de-451e-8867-04b1e6efbe4f/ricOYx8mhrMhux6CxAa0.webp","https://static.pierrefrey.com/uploads/product/packshots/b858d4ec-2a07-4820-95e5-96d6efa4be23/orkUPtU4OlmQZ1G3bW47.webp","https://static.pierrefrey.com/uploads/product/packshots/c60eb097-969a-4cb2-98cf-78bd3dc5665a/NJaT5p30fzjrUlPC4pCM.webp","https://static.pierrefrey.com/uploads/product/packshots/f25bd3cf-fe96-4f9c-b1ac-116c7fdbdfeb/I77fwpVZHuKGPdljGcr7.webp","https://static.pierrefrey.com/uploads/product/packshots/97de0f96-cf5e-45ac-93a4-4b278418872e/MqLkk8UknSolm4ynNHoc.webp","https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp","https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp","https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp","https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp","https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f303a333-51de-451e-8867-04b1e6efbe4f/ricOYx8mhrMhux6CxAa0.webp,https://static.pierrefrey.com/uploads/product/packshots/b858d4ec-2a07-4820-95e5-96d6efa4be23/orkUPtU4OlmQZ1G3bW47.webp,https://static.pierrefrey.com/uploads/product/packshots/c60eb097-969a-4cb2-98cf-78bd3dc5665a/NJaT5p30fzjrUlPC4pCM.webp,https://static.pierrefrey.com/uploads/product/packshots/f25bd3cf-fe96-4f9c-b1ac-116c7fdbdfeb/I77fwpVZHuKGPdljGcr7.webp,https://static.pierrefrey.com/uploads/product/packshots/97de0f96-cf5e-45ac-93a4-4b278418872e/MqLkk8UknSolm4ynNHoc.webp,https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp,https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp,https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp,https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp,https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:23.245Z"}
+{"mfr_sku":"BP204004","pattern_name":"Le grand corail","color_name":"Lavender","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP204004-le-grand-corail","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 122 cm - 48,03 inch | Half drop repeat","Weight":"174 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 68 cm - 26,00 inch | V: 122 cm - 48,03 inch | Half drop repeat","weight":"174 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Le grand corail","description":"Small width printed wallpapers, Le grand corail. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/bcfcb3ac-a550-4dba-b3d8-a05ee2763d4e/ePxIUrvVgRBZxyWni0yX.webp","https://static.pierrefrey.com/uploads/product/packshots/4cdb57a4-482d-480a-80ac-a83d2f0a98c7/X28H65P6RNwEvlXFrn5U.webp","https://static.pierrefrey.com/uploads/product/packshots/7f7d6688-ff26-4171-8519-1103b3e4679c/XKKbBDA5qD2Y5X9WCWKC.webp","https://static.pierrefrey.com/uploads/product/packshots/bad08a74-23dc-44a5-888d-753eea6fd9e9/oaFfCJNfbbzEtU67upg2.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/bcfcb3ac-a550-4dba-b3d8-a05ee2763d4e/ePxIUrvVgRBZxyWni0yX.webp,https://static.pierrefrey.com/uploads/product/packshots/4cdb57a4-482d-480a-80ac-a83d2f0a98c7/X28H65P6RNwEvlXFrn5U.webp,https://static.pierrefrey.com/uploads/product/packshots/7f7d6688-ff26-4171-8519-1103b3e4679c/XKKbBDA5qD2Y5X9WCWKC.webp,https://static.pierrefrey.com/uploads/product/packshots/bad08a74-23dc-44a5-888d-753eea6fd9e9/oaFfCJNfbbzEtU67upg2.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:24.115Z"}
+{"mfr_sku":"FP169002","pattern_name":"Wallpaper espalier","color_name":"Foin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP169002-wallpaper-espalier","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 35 cm - 13,77 inch | Straight repeat","Weight":"159 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 35 cm - 13,77 inch | Straight repeat","weight":"159 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper espalier","description":"Small width printed wallpapers, Wallpaper espalier. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/f3bf5040-aec5-44de-bd69-3407eda9e06c/FiTd2F2A9JaDKvxmoNJE.webp","https://static.pierrefrey.com/uploads/product/packshots/c9805621-4831-437b-8645-138764e78a31/h4yduGvMHKLh1b4VETRf.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/f3bf5040-aec5-44de-bd69-3407eda9e06c/FiTd2F2A9JaDKvxmoNJE.webp,https://static.pierrefrey.com/uploads/product/packshots/c9805621-4831-437b-8645-138764e78a31/h4yduGvMHKLh1b4VETRf.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:24.968Z"}
+{"mfr_sku":"FP043001","pattern_name":"Hana","color_name":"Bougainvillier","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP043001-hana","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP_251x335_webp.webp","specs":{"Type":"Embossed patterns - Straws and similar materials - Embroideries","Sales Unit":"Available per roll of  7,20 mts","Backing":"PAPER","Composition":"38 % Viscose - 30 % Polyester - 23 % Straw - 9 % Cotton","Width":"86 cm / 33,85 inch","Repeat":"H: 86 cm - 33,00 inch | V: 79 cm - 31,10 inch | Free match","Weight":"715 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Notes":"Raised pattern","Information":"Panel effect | Embroidered wallcovering.Irregular appearance due to handcrafting","Book":"F9979PPFREY44"},"width":"86 cm / 33,85 inch","composition":"38 % Viscose - 30 % Polyester - 23 % Straw - 9 % Cotton","material":"PAPER","pattern_repeat":"H: 86 cm - 33,00 inch | V: 79 cm - 31,10 inch | Free match","weight":"715 gr / m²","certifications":null,"sales_unit":"Available per roll of  7,20 mts","roll_length":null,"collection":"Hana","description":"Embossed patterns - Straws and similar materials - Embroideries, Hana. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp,https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:25.758Z"}
+{"mfr_sku":"FP847001","pattern_name":"Praslin","color_name":"Soleilcouchant","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP847001-praslin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 49 cm - 19,00 inch | V: 49 cm - 19,29 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 49 cm - 19,00 inch | V: 49 cm - 19,29 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Praslin","description":"Wide width printed wallpapers - Vinyls, Praslin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp","https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp","https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp","https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp","https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp","https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp","https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp","https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp","https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp","https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp","https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp","https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp","https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp","https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp","https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp","https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp","https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp","https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp","https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f3b4fd35-49b0-427e-8465-e043d7d514f6/8laqVMyk6nGUgHnvUCBT.webp,https://static.pierrefrey.com/uploads/product/packshots/9f4e6811-9daf-4268-ae66-5f82f5439b3c/ijkkv3jP5lLZVU2wCqHS.webp,https://static.pierrefrey.com/uploads/product/packshots/5eb304c8-5e8c-49b3-9aad-f5aa07fc9036/AugHxNJd42O1gfFL9bpf.webp,https://static.pierrefrey.com/uploads/product/packshots/89b930df-a9d7-481f-910c-a37ebc9e3e95/uv4XdbBWV1I6FRvpff7Y.webp,https://static.pierrefrey.com/uploads/product/packshots/9063a1b1-e585-4664-b069-0f3339192679/WFdUcyvsejHP6vVnfE90.webp,https://static.pierrefrey.com/uploads/product/packshots/5da958a7-b0a8-40ea-a011-8e15774b3f3d/wwf8gwzzC6c8qXkFcsNF.webp,https://static.pierrefrey.com/uploads/product/packshots/153196d7-4cd3-4474-927a-de51c52606f2/cdghecMh0wftDL49HSG4.webp,https://static.pierrefrey.com/uploads/product/packshots/e720fdac-5ccf-4d6b-a2c7-7f24bdbaaf96/OlQkeyamOipJSxotzvVZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f92751b4-650d-4a67-93e0-b412fc17e6de/n9khvpD2JAJIspTrnnIb.webp,https://static.pierrefrey.com/uploads/product/packshots/71cc8f23-62a1-48c4-9c00-f71a5c353639/pmLw7jznJMmYOyGPi0pd.webp,https://static.pierrefrey.com/uploads/product/packshots/9f8a2643-1b63-4c86-aae6-3488e182cab9/CuquFrOOyqN3QvhBg8FY.webp,https://static.pierrefrey.com/uploads/product/packshots/b28329bd-0ece-4f1a-976f-c830c17b3821/lsw27AjBPCbr66CusjKZ.webp,https://static.pierrefrey.com/uploads/product/packshots/44db31ac-193d-4b1d-9455-0b4584a3b1bc/dKGXR4ovvonnOIQJyTuz.webp,https://static.pierrefrey.com/uploads/product/packshots/8ae2c3d5-98d6-49c1-8315-96e19b454533/33ZyId6LytlDSxl4wSlf.webp,https://static.pierrefrey.com/uploads/product/packshots/416259bd-5a1f-438d-ab3c-e1f3a0df1e11/ugdbCRETfInsoeywDkaY.webp,https://static.pierrefrey.com/uploads/product/packshots/bdc27054-84c7-4a77-89ad-0914605f4708/z7uUdy08edhHRhpt92uo.webp,https://static.pierrefrey.com/uploads/product/packshots/aa8d0efa-3a34-4753-932b-a905bbbfae43/lVlrqg4CXztNoS5DfUEO.webp,https://static.pierrefrey.com/uploads/product/packshots/2592dc93-259c-46fd-afab-bcbce206de40/4ZTxqaOpJjEfL5llL7AZ.webp,https://static.pierrefrey.com/uploads/product/packshots/42268903-e72a-471a-9912-9f9d9c14ffe0/HYA0J2iV7X0E6AAH4X4n.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb31d0a-7ab5-461d-b895-79f480956083/NnvR4eLRht9NCURyZ8Xo.webp,https://static.pierrefrey.com/uploads/product/packshots/66545b54-42dd-4a03-8362-f18a69f45955/MPMLzdKI44uTawAHoEcX.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:26.723Z"}
+{"mfr_sku":"FP030001","pattern_name":"Felindra","color_name":"Chantilly","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP030001-felindra","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"50 % Linen - 45 % Wool - 5 % Polyamide","Width":"134 cm / 52,75 inch","Weight":"295 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY43"},"width":"134 cm / 52,75 inch","composition":"50 % Linen - 45 % Wool - 5 % Polyamide","material":"NON WOVEN","pattern_repeat":null,"weight":"295 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Felindra","description":"Plains & semi plains - Paperbacked fabrics, Felindra. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp","https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp","https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp","https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp","https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp","https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp","https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp","https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp","https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp","https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp","https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp","https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp","https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp","https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp","https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp","https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp","https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp","https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp","https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp","https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp","https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp","https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp","https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp","https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp","https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp","https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp","https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp","https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp","https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp","https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp","https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp","https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp","https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f49972fb-3f8e-490f-99e8-d92e36d3fc97/zN6XkyWSDxiaC7RFEbCG.webp,https://static.pierrefrey.com/uploads/product/packshots/ceb87774-0c0f-4a68-b9c5-7f7e8d2a475c/dIEV4feweuFpK1vkRwoA.webp,https://static.pierrefrey.com/uploads/product/packshots/51af9e31-34f2-4f6d-b99b-70484f4b2c44/VyZOLNGO9cNDiH1WLzZK.webp,https://static.pierrefrey.com/uploads/product/packshots/e30a08de-8eec-43d4-a86c-8e48b22ed1a2/ykqj4baPU1ImEWzhiN8K.webp,https://static.pierrefrey.com/uploads/product/packshots/be92eee1-82be-4de6-8f3c-d2ce2741d27e/7gksUfX6k4e0o5Uo5IrE.webp,https://static.pierrefrey.com/uploads/product/packshots/db23d83d-03b3-435d-a983-aa62e41d45b8/mRDhERxbaUVZ8lnqEav0.webp,https://static.pierrefrey.com/uploads/product/packshots/cbdc8578-4781-4a0e-92b5-2df530c47379/Zpi0jhPSE67HBpo2afmt.webp,https://static.pierrefrey.com/uploads/product/packshots/de079eed-87ef-4ad7-8e7a-992228f36f16/MvMgBucTpp9J6xBMSmda.webp,https://static.pierrefrey.com/uploads/product/packshots/928129ab-356d-4f9a-a0f7-7c1e80ee312e/ahzubve79S1L7Yb9lNtQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ab7fce98-3d05-406d-86aa-91b924c99374/jiXbsusCSd5CghHkKofq.webp,https://static.pierrefrey.com/uploads/product/packshots/001dbc2c-01d5-482a-a389-e6dc95f1cd1d/cWmc94ctqQdrvNPDP27E.webp,https://static.pierrefrey.com/uploads/product/packshots/1af1b29f-f053-4db8-83ec-14a17bdd0ac2/ZjwX6fXr7ViDPitZF7am.webp,https://static.pierrefrey.com/uploads/product/packshots/67f8951a-1e09-4d8b-9cf8-13d3b65eb2d3/esedvj41zvqMPdHjocyZ.webp,https://static.pierrefrey.com/uploads/product/packshots/2797d74f-e55d-451f-9569-afeeded8dd68/oFQzpeF73XAc89bZr5af.webp,https://static.pierrefrey.com/uploads/product/packshots/242317a7-223d-46ad-88a8-57c300b26cfd/f4Us1MKt4tN8pSBQSb2C.webp,https://static.pierrefrey.com/uploads/product/packshots/416a9178-2b13-4f53-982e-35ab39f6f657/0IJlqprZ6kUx3BOZMLBM.webp,https://static.pierrefrey.com/uploads/product/packshots/651da170-e827-46ea-89e8-7e053e7ec7e6/XL30FpC07IV0RuvYTuwJ.webp,https://static.pierrefrey.com/uploads/product/packshots/454ad481-ccbb-4542-b121-187c6be72c31/DJ4VdqzK0fytGI4LwbGt.webp,https://static.pierrefrey.com/uploads/product/packshots/58be5a29-d9cf-4977-9d1f-faa6d5d89cfe/eD9zFZCISYviXID2g6xe.webp,https://static.pierrefrey.com/uploads/product/packshots/2b2fa35c-6233-4780-a64a-40eb39b20d4c/Um9w7GyKFUmp5acGf0m2.webp,https://static.pierrefrey.com/uploads/product/packshots/0dd0d647-6e59-49d7-adb4-41dd1ba06209/eMnegools0FLakNiz0B0.webp,https://static.pierrefrey.com/uploads/product/packshots/6f80dd14-70f7-454a-b04d-18a293d63ce3/fVa0OdW5JvdYkrjy4Ra8.webp,https://static.pierrefrey.com/uploads/product/packshots/307f9416-b19f-4f9e-a58e-fc79a2f4bb38/qIBx5ndq7Pe7evpB4jkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4629f832-d1b5-4e5b-910c-b1cd9fb38ec8/7fgOjGCh4DsqjGHDhtPz.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd82748-1352-430d-959c-87581621e058/WZ6ZcqlY7DeK7a9ZY4RW.webp,https://static.pierrefrey.com/uploads/product/packshots/86a21dda-1a70-4de3-ae46-57074a7a2be8/0OlO3YXz7s03ioFW0gDq.webp,https://static.pierrefrey.com/uploads/product/packshots/0e1538be-1e1d-4adf-8550-8398b66d3d8f/wzNWNezj3mMiZUEyKPIu.webp,https://static.pierrefrey.com/uploads/product/packshots/9f11acd0-46b4-45f2-b2f9-8cd60ab87ed4/qXcOY8CDzz9OGHKDk6gL.webp,https://static.pierrefrey.com/uploads/product/packshots/8714be0d-6cec-4cf9-b88a-da2055183c3a/jsNmzbOuY5YWPoEoIRBD.webp,https://static.pierrefrey.com/uploads/product/packshots/88adbdc0-bf52-4219-8bd3-c73b2aebcd8b/xrk2tEWDKySAiwYW9NtJ.webp,https://static.pierrefrey.com/uploads/product/packshots/d0889ac9-2f1c-44e1-9e1e-0b63fc366595/Q5YWnzD4SpGhEnXD39Ds.webp,https://static.pierrefrey.com/uploads/product/packshots/3d25bed2-0344-435d-8459-d9bdaa1bbb6a/xeVKDjXjYHyNwl4AWJIw.webp,https://static.pierrefrey.com/uploads/product/packshots/05995f93-bbc8-47a0-bc6e-12fb605bbc81/1unvKoxQI9DsUk66DFqe.webp,https://static.pierrefrey.com/uploads/product/packshots/e819e55a-5165-40f8-9c78-044f8cc218a9/Z1J3x3g17RTsvPlH2CP5.webp,https://static.pierrefrey.com/uploads/product/packshots/039c22c1-b946-4192-8fba-8a169b70ecd2/1EfrNNGsp1sU6AgOpN5L.webp,https://static.pierrefrey.com/uploads/product/packshots/377e79a4-4214-4bfd-9aa8-59934f050fb8/OVSb8OYDknG8ZSFdr1Bg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:27.538Z"}
+{"mfr_sku":"FP198001","pattern_name":"Planisphere","color_name":"Gray","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP198001-planisphere","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"67 cm / 26,37 inch","Repeat":"V: 96 cm - 37,79 inch | Half drop repeat","Weight":"191 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"67 cm / 26,37 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 96 cm - 37,79 inch | Half drop repeat","weight":"191 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Planisphere","description":"Small width printed wallpapers, Planisphere. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp","https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp","https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp","https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp","https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp","https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp","https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp","https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp","https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp","https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp","https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp","https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp","https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp","https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp","https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp","https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp","https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp","https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp","https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp","https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp","https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp","https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp","https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp","https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp","https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp","https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp","https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp","https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp","https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp","https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp","https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp","https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp","https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp","https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp","https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp","https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp","https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp","https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp","https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp","https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp","https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp","https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp","https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp","https://static.pierrefrey.com/uploads/product/packshots/a5857ea7-a2b6-4380-a475-98cb6cf14de4/d6YRk9vMDSfa65ol2SNY.webp","https://static.pierrefrey.com/uploads/product/packshots/9089cdc7-6241-4274-9992-e28a44595f2d/ruM0F7cvdbDSzkfg5KZY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f4ed8f60-2e2c-4d19-a4ef-0814cb148b65/OrGvewdIvXi7C0L0hFsT.webp,https://static.pierrefrey.com/uploads/product/packshots/b48acb45-d64a-4957-9a36-27297441a379/2wK1UWbNAeIE9f0IRHDU.webp,https://static.pierrefrey.com/uploads/product/packshots/99f8f10c-61c4-4b5a-974a-625f0b824e02/lK2PH7aPxKfKFaYjCEmx.webp,https://static.pierrefrey.com/uploads/product/packshots/1f4970e5-0051-45d0-9987-7f59e12011e2/si6pjfP64NolWT5QfkYk.webp,https://static.pierrefrey.com/uploads/product/packshots/ab4eba6d-1501-496c-a194-dbd1ffb2d308/jVvOZOCOa4k7dnpT8xol.webp,https://static.pierrefrey.com/uploads/product/packshots/0dbeedde-670c-4ba2-9e51-9075d2ed742f/ESH4oRrRCh2nyMjpn3z7.webp,https://static.pierrefrey.com/uploads/product/packshots/61d02e11-f6bb-4927-bd95-c79d19c8cc10/f9dVTsE6Y9IiLJ4LXkcE.webp,https://static.pierrefrey.com/uploads/product/packshots/d197cb3d-1d0f-4ba6-a37c-b4c10b89f471/8aj30POZUA0fef61c3ME.webp,https://static.pierrefrey.com/uploads/product/packshots/f17e90a3-2787-47b4-a9f2-1264cc761e22/kVVv76faLQM10tII7C2v.webp,https://static.pierrefrey.com/uploads/product/packshots/82e4cc62-bf1f-41d1-85a3-0b2b610f94be/97aU0NYo9NB0utrVZyKl.webp,https://static.pierrefrey.com/uploads/product/packshots/ed5df192-9d97-4a0f-a2e4-e492bf2d4d49/OSeCgP0RPfvGqfKB9B4A.webp,https://static.pierrefrey.com/uploads/product/packshots/6f76a8dc-feb2-4f37-84b3-607c9be3a178/oJag5HENXALrBmivLVCb.webp,https://static.pierrefrey.com/uploads/product/packshots/a99555e7-8796-49a8-a867-22e2b83a3ace/lyhpUNdzR5rbLX8b9X5Z.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/60882214-fa50-4caa-bfe6-0a46bb9f85b5/fg7TJi3rmx3U3z8JJh7R.webp,https://static.pierrefrey.com/uploads/product/packshots/849d3285-d08d-473f-b3e0-38c9a93ab234/BkXMmjceApJOXpT9fo1W.webp,https://static.pierrefrey.com/uploads/product/packshots/bc9357dd-9f19-42e0-848f-3ac27d9b66fe/OXUSnyzInpLPbmgy7TmZ.webp,https://static.pierrefrey.com/uploads/product/packshots/4fa4eecb-f455-450d-8787-aa82be9822a2/gkq9XsXIsI2ttS8XZwr0.webp,https://static.pierrefrey.com/uploads/product/packshots/68e2c45f-5d2f-4387-881b-117204ef5997/AUMzsiQHLzbbwJggNxF1.webp,https://static.pierrefrey.com/uploads/product/packshots/11aae4d6-e769-4a5b-8b48-b5a249a797cc/Uwz8Kxz9SJZg3NWAp9IK.webp,https://static.pierrefrey.com/uploads/product/packshots/86b10d25-6ef6-4761-aad5-647e58aaf9c1/BxNhngouJywqq01d9fih.webp,https://static.pierrefrey.com/uploads/product/packshots/7095853b-7190-47e1-90dd-7b3b12227f7b/VgvQWCqUljpbzxUZPQMI.webp,https://static.pierrefrey.com/uploads/product/packshots/ed19277d-6c76-480e-af89-2b1310ecdc40/1BvN5wngRxfHzl5AlEC1.webp,https://static.pierrefrey.com/uploads/product/packshots/c3afee8b-ec51-4472-95ce-cff9288205d6/4Uk0y0queMtW2CFRLYjv.webp,https://static.pierrefrey.com/uploads/product/packshots/d5b316b3-077a-4787-a685-cb3d1f4a9e97/8RasIrqexegu1tkUu3KW.webp,https://static.pierrefrey.com/uploads/product/packshots/0a200618-b529-474c-976c-08f4692ccff1/wANxs5FoJFX5zVOdgb0N.webp,https://static.pierrefrey.com/uploads/product/packshots/8c56fe0c-51f9-4587-8f7f-8e332eaa43db/nzttEWS2BSkVLOlNUSkw.webp,https://static.pierrefrey.com/uploads/product/packshots/211c4111-9bb9-49b3-8a7a-0084b38f85b1/x0gPM5VIaLlwAWHS7ozC.webp,https://static.pierrefrey.com/uploads/product/packshots/926675b7-db5c-42e7-a6ac-1ae0cba7c1bf/NQUfTgffglCYQJalfVBw.webp,https://static.pierrefrey.com/uploads/product/packshots/6a68211f-37ad-47be-93a4-60c2330a16d1/PjiY68CcVBHJh6x5yXzt.webp,https://static.pierrefrey.com/uploads/product/packshots/c7f2fac4-aea0-4721-b00c-90fb1e6fee73/K7PiPHyXMRAx5ZZjizgY.webp,https://static.pierrefrey.com/uploads/product/packshots/8862920e-9a02-4264-ba13-c1879caa74b0/P35aMMhzIBcW8Z6RC2Jr.webp,https://static.pierrefrey.com/uploads/product/packshots/0dfab65a-dd88-4385-979d-423876f33541/GGyx7HpwRBVb4CIkvBES.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/f36cc4a9-a25c-42c4-888b-59993b46f09f/GeYF0QcLJ9V33365yEQL.webp,https://static.pierrefrey.com/uploads/product/packshots/465278e4-9a51-4d1b-b6f1-c6b8855b455b/yzYIzLO6vLpbCvvblh08.webp,https://static.pierrefrey.com/uploads/product/packshots/2758bb84-7688-432b-8851-69f3c231c550/nD1HL1WpQ9QKM79LW0Kx.webp,https://static.pierrefrey.com/uploads/product/packshots/dd2bdf22-3cbc-4463-b131-d7ba84cd0092/57Qu3WeDSXe7xDKitQk3.webp,https://static.pierrefrey.com/uploads/product/packshots/d21fab24-1564-4646-a704-ca3c234de5ec/EXkiW85wXafbhwbn5wkJ.webp,https://static.pierrefrey.com/uploads/product/packshots/c8f22109-9fe9-4f82-8e93-49591de4ba0c/JJi71azJYhlXDH2o7foh.webp,https://static.pierrefrey.com/uploads/product/packshots/b3644be1-1964-46aa-bce9-fba730694045/6XNfOSrA8KwDrALY7lx6.webp,https://static.pierrefrey.com/uploads/product/packshots/7eee4dd0-dbd6-48bf-a2e0-0ff4aa1b88db/7fdvXvAqtKKsFJyBhs2M.webp,https://static.pierrefrey.com/uploads/product/packshots/ee7a65d2-35c2-4feb-b658-75f3778b9368/GTBP7uPzTEixaIooMhO7.webp,https://static.pierrefrey.com/uploads/product/packshots/94d10ab3-5330-4447-af37-0dec13c8addb/4UG5BJJL7qI2VRPxrJX6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c8f0eaa-0a9d-419b-9c83-e77e32b98216/mThMuD94BUAwEq8QIgBp.webp,https://static.pierrefrey.com/uploads/product/packshots/ad669e13-84c9-4ced-96bc-e6548f18f0e7/pCAuBpQEsqcRXNeZXDQS.webp,https://static.pierrefrey.com/uploads/product/packshots/ddbb0efe-f8e3-4a93-b21d-0fb0d3d0692c/d46Nt84lFGfoDKe4f5Cr.webp,https://static.pierrefrey.com/uploads/product/packshots/3e0cd055-a96a-41ac-bcfc-357d23d177bf/4mqXhhAklk40xgDfvjfC.webp,https://static.pierrefrey.com/uploads/product/packshots/a5857ea7-a2b6-4380-a475-98cb6cf14de4/d6YRk9vMDSfa65ol2SNY.webp,https://static.pierrefrey.com/uploads/product/packshots/9089cdc7-6241-4274-9992-e28a44595f2d/ruM0F7cvdbDSzkfg5KZY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:28.416Z"}
+{"mfr_sku":"BP206002","pattern_name":"Wallpaper la fontaine","color_name":"Antique Rose","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP206002-wallpaper-la-fontaine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 50 cm - 19,68 inch | Straight repeat","Weight":"174 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 50 cm - 19,68 inch | Straight repeat","weight":"174 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper la fontaine","description":"Small width printed wallpapers, Wallpaper la fontaine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:29.089Z"}
+{"mfr_sku":"BP206006","pattern_name":"Wallpaper la fontaine","color_name":"Ochre Red","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP206006-wallpaper-la-fontaine","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"V: 50 cm - 19,68 inch | Straight repeat","Weight":"174 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 50 cm - 19,68 inch | Straight repeat","weight":"174 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper la fontaine","description":"Small width printed wallpapers, Wallpaper la fontaine. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:29.923Z"}
+{"mfr_sku":"BP208002","pattern_name":"Wallpaper marquis de seignelay","color_name":"Coral/Leaf","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP208002-wallpaper-marquis-de-seignelay","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"73 cm / 28,74 inch","Repeat":"V: 106 cm - 41,73 inch | Straight repeat","Weight":"191 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"73 cm / 28,74 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 106 cm - 41,73 inch | Straight repeat","weight":"191 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper marquis de seignelay","description":"Small width printed wallpapers, Wallpaper marquis de seignelay. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/c367838e-3e30-4dda-ad51-4a67fd5219c4/yFiJmIOXPUOK82TKVUX7.webp","https://static.pierrefrey.com/uploads/product/packshots/f225b2c3-801d-4a78-810a-3f5a5c11ae34/hvJrE4p53te3nw8nA6Kf.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/c367838e-3e30-4dda-ad51-4a67fd5219c4/yFiJmIOXPUOK82TKVUX7.webp,https://static.pierrefrey.com/uploads/product/packshots/f225b2c3-801d-4a78-810a-3f5a5c11ae34/hvJrE4p53te3nw8nA6Kf.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:30.548Z"}
+{"mfr_sku":"FP073001","pattern_name":"Maria","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP073001-maria","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f6e9fef8-8360-4c84-866c-9a4ba0238bb5/X04shOtyStNPtVwjh6Wh_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Maria Shell","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 131 cm - 51,57 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY45"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 131 cm - 51,57 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Maria","description":"Wide width printed wallpapers, Maria. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f6e9fef8-8360-4c84-866c-9a4ba0238bb5/X04shOtyStNPtVwjh6Wh.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f6e9fef8-8360-4c84-866c-9a4ba0238bb5/X04shOtyStNPtVwjh6Wh.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/6c8a199a-1287-486d-aed5-256ca3a4e394/Hte2g32Fhomf4OheZzK2.webp","https://static.pierrefrey.com/uploads/product/packshots/9d44d1fb-fa7b-4bbe-8b09-a4689e059374/ccu42by3iDcYroAG5Hao.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f6e9fef8-8360-4c84-866c-9a4ba0238bb5/X04shOtyStNPtVwjh6Wh.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/6c8a199a-1287-486d-aed5-256ca3a4e394/Hte2g32Fhomf4OheZzK2.webp,https://static.pierrefrey.com/uploads/product/packshots/9d44d1fb-fa7b-4bbe-8b09-a4689e059374/ccu42by3iDcYroAG5Hao.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:31.508Z"}
+{"mfr_sku":"FP963001","pattern_name":"Oboshi","color_name":"Beige","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP963001-oboshi","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"98 cm / 38,58 inch","Repeat":"H: 98 cm - 38,00 inch | V: 84 cm - 33,07 inch | Straight repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant"},"width":"98 cm / 38,58 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 98 cm - 38,00 inch | V: 84 cm - 33,07 inch | Straight repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Oboshi","description":"Wide width printed wallpapers - Vinyls, Oboshi. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:32.398Z"}
+{"mfr_sku":"FP873003","pattern_name":"Anastasia","color_name":"Groseille","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP873003-anastasia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f7b5074f-8c02-40c2-86f8-984a60f847f4/X2DFWL9sU6dmo4VS4qFp_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 50 cm - 19,68 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY33"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 50 cm - 19,68 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Anastasia","description":"Wide width printed wallpapers, Anastasia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f7b5074f-8c02-40c2-86f8-984a60f847f4/X2DFWL9sU6dmo4VS4qFp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f7b5074f-8c02-40c2-86f8-984a60f847f4/X2DFWL9sU6dmo4VS4qFp.webp","https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp","https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp","https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp","https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp","https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp","https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp","https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp","https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp","https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp","https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f7b5074f-8c02-40c2-86f8-984a60f847f4/X2DFWL9sU6dmo4VS4qFp.webp,https://static.pierrefrey.com/uploads/product/packshots/b3c4458d-3c60-41d7-9339-1789c9918cac/D134K9c1bRJscrBDOUka.webp,https://static.pierrefrey.com/uploads/product/packshots/0b12ce72-4aa5-42c4-8803-5529dbe3bbda/pIKfMClyyhRvb5ztXmh8.webp,https://static.pierrefrey.com/uploads/product/packshots/5a2c973f-556e-4950-8fc1-61576a32a6e7/KXEm31ktzNHaFX8wRq8w.webp,https://static.pierrefrey.com/uploads/product/packshots/af3e6758-2aff-408c-a715-687cfe041a51/PjppxwURVysPjuhNBQlJ.webp,https://static.pierrefrey.com/uploads/product/packshots/13b4fc5c-79fe-4a7a-bffe-8f089cca959d/vuYdxYTWxbyfjO3Je3CV.webp,https://static.pierrefrey.com/uploads/product/packshots/8393d99a-b22d-4394-b78c-1c69ec2e08a7/QU4RMTVXtHioeGYHSRv8.webp,https://static.pierrefrey.com/uploads/product/packshots/ce407419-3fcc-46fc-8b98-ded340d85f4e/PNb0deEZWn2dJHuzWhQb.webp,https://static.pierrefrey.com/uploads/product/packshots/886e1d01-636d-46ea-8134-080d25155b16/QJqeQe7l4JFFBbwQ18HW.webp,https://static.pierrefrey.com/uploads/product/packshots/a4f5f199-dd5f-483c-819c-9524e47c6f0b/g9o7i1jtzcv03MJsByUS.webp,https://static.pierrefrey.com/uploads/product/packshots/a8b8854a-80ae-4e02-ab2b-44b1fabeea68/u7J5HIEPuarSe9RXBPdG.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:33.089Z"}
+{"mfr_sku":"FP829001","pattern_name":"Le carrousel","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP829001-le-carrousel","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 93 cm - 36,61 inch | Straight repeat","Weight":"152 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY28"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 93 cm - 36,61 inch | Straight repeat","weight":"152 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Le carrousel","description":"Wide width printed wallpapers, Le carrousel. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp","https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp","https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp","https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp","https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp","https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp","https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp","https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp","https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f87de1ae-fbd1-450a-87f2-77ce9c2aa6dd/ovn2TBkDw5CXwZoOhwpH.webp,https://static.pierrefrey.com/uploads/product/packshots/5c7ca850-1893-4f32-a37e-89a359d2af9d/bm5japopYeLAcSCcav81.webp,https://static.pierrefrey.com/uploads/product/packshots/4f33800d-b1da-4526-9b84-d9c0d29a7159/8B1WUvPV76hwSN14tznj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0784c93-69e3-49aa-a1ef-d95588041615/o1wK6Kf5vkRMhU9uJgLq.webp,https://static.pierrefrey.com/uploads/product/packshots/d010ccc3-930b-419c-b3b3-5cc37ffd7ccb/m7o1YehOXZTFipHjW4Zr.webp,https://static.pierrefrey.com/uploads/product/packshots/80abce56-9554-4b93-95c0-2634e0173e62/qfUJNMeZG6NCn84whLPb.webp,https://static.pierrefrey.com/uploads/product/packshots/583f2cb8-7e61-4380-a21d-af7b45a1b1fa/tDGOsqxFQlGr4lElyl8I.webp,https://static.pierrefrey.com/uploads/product/packshots/09c1d9f2-0159-4ab4-baac-567e10b4d4dc/23xfm8NrAQabrzjomqq8.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed544fd-890f-4ea0-b073-c42d65c4c4eb/tgLNYaMgTKE4K9rT4htc.webp,https://static.pierrefrey.com/uploads/product/packshots/ede12273-8fdd-4820-936e-167a8aaa7dec/nEvLItfzrX2dSxrZqpZh.webp,https://static.pierrefrey.com/uploads/product/packshots/cb1f5941-8d65-497e-80de-a2cceb2d2bce/lkVV8LtzamZ9nvAlBGEB.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:33.705Z"}
+{"mfr_sku":"FP607001","pattern_name":"Les rois de la jungle","color_name":"Pop","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP607001-les-rois-de-la-jungle","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Panoramic wallpapers","Sales Unit":"Full panoramic  204 cm x 300 cm ( 3 lengths  68 cm x 300 cm) -  80,31 in x 118,11 in( 3 lengths  26,77 in x 118,11 in)","Backing":"NON WOVEN","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 204 cm - 80,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"460 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Dry strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 3 panels"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"NON WOVEN","pattern_repeat":"H: 204 cm - 80,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"460 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  204 cm x 300 cm ( 3 lengths  68 cm x 300 cm) -  80,31 in x 118,11 in( 3 lengths  26,77 in x 118,11 in)","roll_length":null,"collection":"Les rois de la jungle","description":"Small width printed wallpapers - Vinyls - Panoramic wallpapers, Les rois de la jungle. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp","https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp","https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp","https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp","https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp","https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp","https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp","https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp","https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/f9008fa3-0559-469f-b257-32bbdc424977/YQGm2nY1VfiM28TWmocs.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp,https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp,https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp,https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp,https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp,https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp,https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp,https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp,https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/f9008fa3-0559-469f-b257-32bbdc424977/YQGm2nY1VfiM28TWmocs.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/f9008fa3-0559-469f-b257-32bbdc424977/YQGm2nY1VfiM28TWmocs.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:19:34.353Z"}
+{"mfr_sku":"BP368001","pattern_name":"Zarand coordonne","color_name":"Henne","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP368001-zarand-coordonne","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Embossed patterns","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"65 % Polyester - 35 % Cotton","Width":"121 cm / 47,63 inch","Repeat":"H: 40 cm - 15,00 inch | V: 63 cm - 24,80 inch | Straight repeat","Weight":"317 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Notes":"Raised pattern","Book":"B9979PPBRAQ8"},"width":"121 cm / 47,63 inch","composition":"65 % Polyester - 35 % Cotton","material":"NON WOVEN","pattern_repeat":"H: 40 cm - 15,00 inch | V: 63 cm - 24,80 inch | Straight repeat","weight":"317 gr / m²","certifications":null,"sales_unit":"Available per meter/yard","roll_length":null,"collection":"Zarand coordonne","description":"Wide width printed wallpapers - Embossed patterns, Zarand coordonne. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","https://static.pierrefrey.com/uploads/product/packshots/4a5179c4-3849-4197-a355-630561a87f96/AQYBmrOWWGTMpWJDbl0i.webp","https://static.pierrefrey.com/uploads/product/packshots/2ab51493-e8b1-4bb6-bb3a-e9accc6cad1a/rXTVpW3LALOziS3DXAnm.webp","https://static.pierrefrey.com/uploads/product/packshots/6e8b689a-6b83-4921-843d-99126c964b3a/Wg0BBcsNcYEBOkYDNkpd.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp,https://static.pierrefrey.com/uploads/product/packshots/4a5179c4-3849-4197-a355-630561a87f96/AQYBmrOWWGTMpWJDbl0i.webp,https://static.pierrefrey.com/uploads/product/packshots/2ab51493-e8b1-4bb6-bb3a-e9accc6cad1a/rXTVpW3LALOziS3DXAnm.webp,https://static.pierrefrey.com/uploads/product/packshots/6e8b689a-6b83-4921-843d-99126c964b3a/Wg0BBcsNcYEBOkYDNkpd.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:35.375Z"}
+{"mfr_sku":"FP973002","pattern_name":"Tuamotu","color_name":"Lagon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP973002-tuamotu","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 102 cm - 40,15 inch | Straight repeat","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 102 cm - 40,15 inch | Straight repeat","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tuamotu","description":"Small width printed wallpapers - Straws and similar materials, Tuamotu. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:36.192Z"}
+{"mfr_sku":"FP966003","pattern_name":"Castellaras","color_name":"Toscane","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP966003-castellaras","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 68 cm - 26,00 inch | V: 60 cm - 23,62 inch | Half drop repeat","Weight":"400 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Stain and impact resistant"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"PAPER","pattern_repeat":"H: 68 cm - 26,00 inch | V: 60 cm - 23,62 inch | Half drop repeat","weight":"400 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Castellaras","description":"Small width printed wallpapers - Vinyls, Castellaras. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:37.004Z"}
+{"mfr_sku":"BP363002","pattern_name":"Marigold","color_name":"Cumin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP363002-marigold","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 61 cm - 24,01 inch | Straight repeat","Weight":"-","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Traditional printing technique","Book":"B9979PPBRAQ9"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 61 cm - 24,01 inch | Straight repeat","weight":"-","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Marigold","description":"Small width printed wallpapers, Marigold. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp","https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp","https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp","https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp","https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp","https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp","https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp","https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp","https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp","https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp","https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp","https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp","https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp","https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp","https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp","https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp","https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp","https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp","https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp","https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp","https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp","https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp","https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp","https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp","https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp","https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp","https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp","https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp","https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp","https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp","https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp","https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp","https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp","https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp","https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp","https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp","https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp","https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp","https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp","https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp","https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp","https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp","https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp","https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp","https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp","https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp","https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp","https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp","https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp","https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp","https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp","https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp","https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp","https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fa4294b9-308f-426b-bfbd-260448c10e79/VENXHSFf3U15ksbdkr0C.webp,https://static.pierrefrey.com/uploads/product/packshots/ea97cda2-c284-45f9-97e9-49e636580740/rdh5L03gC8Y3YLsfOnb4.webp,https://static.pierrefrey.com/uploads/product/packshots/12b5614a-58b2-44a2-9a1c-d8da31296a62/NQGCy3qPkJsS116OEzol.webp,https://static.pierrefrey.com/uploads/product/packshots/eb6619a2-cac6-4d2d-ab10-17fae11ccf0a/MFvJVSLAWmli28YwEoCS.webp,https://static.pierrefrey.com/uploads/product/packshots/ce49fe2e-9b3e-4611-b6a5-2ed0e47073a7/ZeAvtxOt1a3rta7kAoWh.webp,https://static.pierrefrey.com/uploads/product/packshots/4fe458c6-5721-4acd-b439-a80549f16965/WUT9pephamR61qYxGcDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/b3941337-19e0-4183-960a-a93675e81d6b/LZQJc2zplJiJpUuOIomQ.webp,https://static.pierrefrey.com/uploads/product/packshots/cdef1a60-ad23-4daa-937c-eaaeb019b937/Ny7l25L00rJ4FdExGFDQ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c20ce2c-46c5-4d13-8a77-80f71770b08c/6xWZqE9EFuEYFJMcMTio.webp,https://static.pierrefrey.com/uploads/product/packshots/b6e99830-821f-477b-841e-1a2b39de2bb2/dC8715Zz3scZCCnuYA9o.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a3adcd-7625-4864-b19d-ff0efd35c55a/Y4Hh84PsrXtSEZjKumZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/021dd622-f628-47ca-ade5-5625949ac72e/dSz4oVq8IpS6ZbCZsbQx.webp,https://static.pierrefrey.com/uploads/product/packshots/7ffd453b-cb26-4ef7-87b0-79ccaf51333d/feOVdwzaYjnV91IJSAp4.webp,https://static.pierrefrey.com/uploads/product/packshots/d75053a2-2c50-4326-ae6b-e38ae9471290/TSqGoVtb0Zh4F4Ztqo9a.webp,https://static.pierrefrey.com/uploads/product/packshots/2cb5ed9e-af77-4b4e-9404-19358ffca6e1/qDWd1ilaXF8tSEktBxj6.webp,https://static.pierrefrey.com/uploads/product/packshots/b45eb6aa-298e-4b1f-baff-7fb026175fcb/NfwzPS40GjA3LTNBdryy.webp,https://static.pierrefrey.com/uploads/product/packshots/efb808e0-3e3c-4bf0-af0c-23b59d8fe1cb/YIZcfDG1icUaRDD2xrLL.webp,https://static.pierrefrey.com/uploads/product/packshots/3ad19b81-8b7f-434d-87b6-4880a6c5bb41/9ZVvP1QWDJVCjlBUoJVR.webp,https://static.pierrefrey.com/uploads/product/packshots/ea877346-6dee-407f-9703-e5b0e1cd384c/5en9yqBP0TM2zXC6wNXf.webp,https://static.pierrefrey.com/uploads/product/packshots/75469ede-fb67-4d1c-a0ea-52a9149e2153/E9NsqSCDVjXufs0CMSZU.webp,https://static.pierrefrey.com/uploads/product/packshots/aaf37ad0-82e5-4ee8-9cdf-fb702802747f/h8nMtAoFV8m1cXSo6Njw.webp,https://static.pierrefrey.com/uploads/product/packshots/d6098f0a-1527-47bc-a99f-8314bf452faa/ySzJyVT03gIdCTYLhPDK.webp,https://static.pierrefrey.com/uploads/product/packshots/cf210e5f-3fdc-42e3-b27a-6cf6156c9698/dk9d1VxfydBmGugPJWGp.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/4d4ab3bb-439e-4348-9813-0869cb85dd00/8Zt0Walb9lLQXVWhY0CQ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c1617ec-f386-4522-b708-aa8370f6f2b1/B3pfuJ38HnGiyI9tNwLg.webp,https://static.pierrefrey.com/uploads/product/packshots/f90cc4db-7e53-4994-bd56-b88128d2aebe/zylTqv4r1GHd2cUWYm7e.webp,https://static.pierrefrey.com/uploads/product/packshots/6deffe17-125d-42a8-866e-5d23c1b6180f/zn35wc3ftZdG6j0HwE6k.webp,https://static.pierrefrey.com/uploads/product/packshots/6995ed55-8a21-4c72-8b09-d0ffa88f8dc1/N4fakli6iSJiWPejil6J.webp,https://static.pierrefrey.com/uploads/product/packshots/1b82b375-0f08-4980-beb7-8bf39b27a11b/7vlVqzmFPeRF84cY2Y9y.webp,https://static.pierrefrey.com/uploads/product/packshots/445058cb-a83d-4de3-b4db-9140c2afb2c5/tG89q4DLrsPe2BZQ1ajo.webp,https://static.pierrefrey.com/uploads/product/packshots/283bd43f-d500-4f3f-afb4-d3498fc76635/doo1KrrFa5CA0szh7AN5.webp,https://static.pierrefrey.com/uploads/product/packshots/8b3d616d-bdea-436d-af25-08b1b89a143c/Y8ORREYisB9MlTVFiBMD.webp,https://static.pierrefrey.com/uploads/product/packshots/0ec8d59a-5445-47e7-972e-98c1274cbbb0/KXKYBT5UzWMx5AA7ixuX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a256332-82c7-40d2-b769-b2794d74df4c/xFnDCNOUV5eklZwePsX9.webp,https://static.pierrefrey.com/uploads/product/packshots/5f426d85-b744-4506-9f4a-6565490d3ff0/vFAkKebuetY6TSttQjAp.webp,https://static.pierrefrey.com/uploads/product/packshots/9bafdfcd-9e95-4f95-a4a0-54c35627e228/G2KnDV4Fci7xGS1epwD9.webp,https://static.pierrefrey.com/uploads/product/packshots/5ba8227a-ea8a-46d1-a996-ff340eaef126/pSvRpCINbRYS99kgy39f.webp,https://static.pierrefrey.com/uploads/product/packshots/ef057ee2-7d1c-460d-8eff-2f400256933c/4gYDMeAgRDPWzZOQ14lg.webp,https://static.pierrefrey.com/uploads/product/packshots/f1f24c90-27ba-4d45-b50d-66411801571b/a4cw3ly2fp5IgB4YAqPJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7c967adf-e083-47fa-a099-fb95061a4c2e/vSynOMqWHTu9GZyLDtQm.webp,https://static.pierrefrey.com/uploads/product/packshots/a46fd143-733d-4b5b-ac9f-fb2dcedd68c8/pB1KK5Yp3CvkWUPkkMGZ.webp,https://static.pierrefrey.com/uploads/product/packshots/6315aece-2632-4280-a13b-008d5d93708b/IXu2SRsrh3p7klXfHGh1.webp,https://static.pierrefrey.com/uploads/product/packshots/a48a5d36-7aa0-4c7a-aaa2-f865a935d223/MvmriAnVFl5y82AkbmXt.webp,https://static.pierrefrey.com/uploads/product/packshots/86f5002f-c097-4215-95ce-66ad76649447/IXBZmmgl4r2VqJNTutqQ.webp,https://static.pierrefrey.com/uploads/product/packshots/5f2a08d9-95cd-438f-a4a5-374bd47dd670/qmr8xPrlVPZCILpQeGh3.webp,https://static.pierrefrey.com/uploads/product/packshots/b4c0f96d-3089-43c6-beef-bb5a7ab1b5d7/cuugjA0KM9Zoq3e64JrJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4d6bb2-a4e0-4638-a94e-5efdf0ae45ab/FXD5U7BrHAjCE8MEfBI1.webp,https://static.pierrefrey.com/uploads/product/packshots/0de308cb-007f-420d-8c34-df23ed14294a/FgmYbBySrlIN5D7a2JKb.webp,https://static.pierrefrey.com/uploads/product/packshots/41eed8bf-120d-4ecc-839e-d85327248d76/EC2AnGAft58Nf2hL3uko.webp,https://static.pierrefrey.com/uploads/product/packshots/8e399a8c-66aa-4f39-bb02-eb56f357cac4/5HKLqOLZsXWEy4Spx8J0.webp,https://static.pierrefrey.com/uploads/product/packshots/07ae2014-9393-494b-86cf-8f477b7cb5db/aqxDTHPpYEEtOpTMOcBS.webp,https://static.pierrefrey.com/uploads/product/packshots/5cbebf0c-4e84-4c31-b68a-290193968f72/LeEzpYWwf43A4sGdD9wg.webp,https://static.pierrefrey.com/uploads/product/packshots/84b168d0-edeb-4284-8a70-f12b24fd689c/g1Np7CYOVOv0MTy9XCPB.webp,https://static.pierrefrey.com/uploads/product/packshots/aea7637f-17f0-4364-bcf1-2f1fb3ccde25/kEoqdLokVZvgiEpgtEtO.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a7fe98-04ff-4b82-b434-f1ac018194c7/LQh78FzPsLZGhNlR8g6P.webp,https://static.pierrefrey.com/uploads/product/packshots/a2a34666-af6e-4666-8d73-9ecc9c2e4db8/Od4zz2BujMpCWplOrN6z.webp,https://static.pierrefrey.com/uploads/product/packshots/2392c8e1-7052-4271-99b8-ccc124625a3d/QZpwL0DJhEWFTlbQCiMD.webp,https://static.pierrefrey.com/uploads/product/packshots/8d1d675f-bf6d-40ca-bee3-20ff38d16aac/Tlnu2S4YzfSBPt2rihzO.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/5822a905-7633-49b7-b374-ee9ca64ba681/7UnI8Mc8JCueSeQgYrzm.webp,https://static.pierrefrey.com/uploads/product/packshots/b8678a51-0879-4fb0-905a-59de3a0c8322/TWAglPi66X8dBEQGuXP3.webp,https://static.pierrefrey.com/uploads/product/packshots/c4704f51-1b2c-41e5-b7b3-cb42d39dfeac/x00nt7UhifgGjZ8fD0pv.webp,https://static.pierrefrey.com/uploads/product/packshots/3a5a3ce9-cb4a-4cac-a4b9-eb5766d85b87/RkpA7Ohpcz8Nx0HtWCvR.webp,https://static.pierrefrey.com/uploads/product/packshots/86020516-0c01-4b0d-8374-292eb2567661/nBgkZkXQGcBGAtmd6CMK.webp,https://static.pierrefrey.com/uploads/product/packshots/c6fc1022-3446-43f4-97be-e9f0afd0f7f0/JoeGzQGAKnRWsemmnDAC.webp,https://static.pierrefrey.com/uploads/product/packshots/553b2af9-b4e8-4360-8674-fbecac8ae334/IVDwOzpqZLo1NfE1WFpz.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:38.031Z"}
+{"mfr_sku":"FP518001","pattern_name":"Fond marin","color_name":"Outremer","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP518001-fond-marin","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Vinyls - Panoramic wallpapers","Sales Unit":"Full panoramic  204 cm x 300 cm ( 3 lengths  68 cm x 300 cm) -  80,31 in x 118,11 in( 3 lengths  26,77 in x 118,11 in)","Backing":"PAPER","Composition":"100 % Vinyl","Width":"68 cm / 26,77 inch","Repeat":"H: 204 cm - 80,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"289 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the paper | Dry strippable","Certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Sold as a complete artwork","Information":"1 roll = 3 panels"},"width":"68 cm / 26,77 inch","composition":"100 % Vinyl","material":"PAPER","pattern_repeat":"H: 204 cm - 80,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"289 gr / m²","certifications":"EUROCLASS B-s2,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  204 cm x 300 cm ( 3 lengths  68 cm x 300 cm) -  80,31 in x 118,11 in( 3 lengths  26,77 in x 118,11 in)","roll_length":null,"collection":"Fond marin","description":"Small width printed wallpapers - Vinyls - Panoramic wallpapers, Fond marin. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT.webp","https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct.webp","https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI.webp","https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8.webp","https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM.webp","https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/fa44418c-77fa-4479-a846-08c05362c016/kwK8VpoYOAOZktFynB6L.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fa44418c-77fa-4479-a846-08c05362c016/ye9V8qOznMcmpjmx0FxT.webp,https://static.pierrefrey.com/uploads/product/packshots/49418cf0-12ef-48ed-9fd6-53c63e352a38/9rX2fFRvhPg0TK5wmwct.webp,https://static.pierrefrey.com/uploads/product/packshots/a6d47faa-4a43-472d-b89e-e58ee001beb7/4iPUjTbZYW29ybbRm5SI.webp,https://static.pierrefrey.com/uploads/product/packshots/03458697-0474-422d-877c-520246ba4d50/Ec3BIcbbug8jUgobjuI8.webp,https://static.pierrefrey.com/uploads/product/packshots/32937f0b-6272-4d5e-a2fb-ef08739a9e6c/JiTfggtW6VXjTQSm5afM.webp,https://static.pierrefrey.com/uploads/product/packshots/1ea5c079-5d05-48ac-90aa-5e0847587a12/YjN7ObSuOeSRRODKTKsM.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/fa44418c-77fa-4479-a846-08c05362c016/kwK8VpoYOAOZktFynB6L.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/fa44418c-77fa-4479-a846-08c05362c016/kwK8VpoYOAOZktFynB6L.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:19:38.803Z"}
+{"mfr_sku":"W4864001","pattern_name":"Wallpaper nakai","color_name":"Red","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4864001-wallpaper-nakai","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 59 cm - 23,22 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 59 cm - 23,22 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper nakai","description":"Small width printed wallpapers, Wallpaper nakai. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","https://static.pierrefrey.com/uploads/product/packshots/e10dad45-46a8-4d65-9b6c-ae92fb743c13/KzELlwvD40J1DVPJc3UR.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp,https://static.pierrefrey.com/uploads/product/packshots/e10dad45-46a8-4d65-9b6c-ae92fb743c13/KzELlwvD40J1DVPJc3UR.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:39.673Z"}
+{"mfr_sku":"FP863008","pattern_name":"Sofia","color_name":"Orge","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP863008-sofia","list_image":"https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R_335x251_webp.webp","specs":{"Type":"Plains & semi plains - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","Width":"130 cm / 51,18 inch","Repeat":"Free match","Weight":"490 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Information":"Panel effect","Book":"F9979PPFREY39"},"width":"130 cm / 51,18 inch","composition":"44 % Linen - 32 % Cotton - 17 % Acrylic - 6 % Polyester","material":"NON WOVEN","pattern_repeat":"Free match","weight":"490 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Sofia","description":"Plains & semi plains - Paperbacked fabrics, Sofia. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp","https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp","https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp","https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp","https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp","https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp","https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp","https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/faba1fb6-1829-4077-8d22-c632dd0b191d/i3qqTv0PMS721bjpH07R.webp,https://static.pierrefrey.com/uploads/product/packshots/a98cf344-0f2e-4cd9-8dc7-85f7d7f12af2/4MQ8Ely6GGfhg7iltK8V.webp,https://static.pierrefrey.com/uploads/product/packshots/9961256a-9c67-43c6-aaeb-1f46c77b0ae6/UI4LS8VrZN51PuIspgbF.webp,https://static.pierrefrey.com/uploads/product/packshots/5aa57bdd-3f58-4edf-8c7e-13da929f80e3/dBJqz1REXqVaFYDN5eHn.webp,https://static.pierrefrey.com/uploads/product/packshots/3c1f721b-fbaf-4adc-8089-91ee114d2b7f/tsrHmbYqDtgyH2asZleh.webp,https://static.pierrefrey.com/uploads/product/packshots/b1dee6ae-b8ea-4d7a-97ce-69980ebef2b3/0mku2qTG3lm3llb7tbrL.webp,https://static.pierrefrey.com/uploads/product/packshots/32bf2020-5404-4812-a67d-7fe74d539456/FhuQ0KaCkrdSAeM5ev7n.webp,https://static.pierrefrey.com/uploads/product/packshots/20b2f1a3-7687-47f7-ad52-a67c35cce740/GzbDGi9wsBeN2vEyDqyS.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:40.376Z"}
+{"mfr_sku":"FP973001","pattern_name":"Tuamotu","color_name":"Aurore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP973001-tuamotu","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"87 cm / 34,25 inch","Repeat":"H: 87 cm - 34,00 inch | V: 102 cm - 40,15 inch | Straight repeat","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Panel effect | Inherent irregularities from the natural fiber"},"width":"87 cm / 34,25 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 87 cm - 34,00 inch | V: 102 cm - 40,15 inch | Straight repeat","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Tuamotu","description":"Small width printed wallpapers - Straws and similar materials, Tuamotu. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp","https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp","https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp","https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp","https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp","https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp","https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp","https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp","https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp","https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp","https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp","https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp","https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp","https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp","https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp","https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp","https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp","https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp","https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fb0d36ec-abdf-40ba-8779-528c321ad6c0/ZWClbuzA5xT1tRAEfzjZ.webp,https://static.pierrefrey.com/uploads/product/packshots/f9326913-a930-4d29-b90e-db942f96f5de/PZjAosLTeU5ddle0k63p.webp,https://static.pierrefrey.com/uploads/product/packshots/13bcda6d-bec1-4d5d-b86d-069b1179b8fc/UTZ01YSOa7GqrI2znm46.webp,https://static.pierrefrey.com/uploads/product/packshots/1e4caa15-5c50-431d-883a-35800a3b8f20/MsXnP4RuynGDYtVra7zJ.webp,https://static.pierrefrey.com/uploads/product/packshots/7762caa8-d2f3-40f1-8c87-b63678ad3255/mrEBnWEMyFV8qzlyMQO4.webp,https://static.pierrefrey.com/uploads/product/packshots/1fc1a14e-17fa-4168-8adb-932549f22ce8/oYNHAa5rplaO1fcC3mph.webp,https://static.pierrefrey.com/uploads/product/packshots/b27504c1-0dab-44c6-8ce3-33f3fa309c15/o52p5HriguzXWPVK8EB3.webp,https://static.pierrefrey.com/uploads/product/packshots/a9a8a77a-7def-4eb6-8d6c-64fe95c7c555/iUMiQYegNNOkqAVjDQyx.webp,https://static.pierrefrey.com/uploads/product/packshots/d7a55a6c-e1ff-40d0-82e1-9e4e223322ba/OfmFXzO0s1IeRgYCbfv6.webp,https://static.pierrefrey.com/uploads/product/packshots/02948c79-a078-4567-98fd-79f0f3d5921a/RYJQtgFFek8qgJNnu3qy.webp,https://static.pierrefrey.com/uploads/product/packshots/534e66c5-84ba-4a1f-837e-a04f7d7757ce/og8GxHFabgQBe961cgnJ.webp,https://static.pierrefrey.com/uploads/product/packshots/1028ef3f-ff39-4ecd-a547-754b00b1bcd9/D7SF3n74UAUJKTNq6JM6.webp,https://static.pierrefrey.com/uploads/product/packshots/db8fe57b-26bf-44ba-bf70-368fc7609adc/TTMMHxSrK0H8MvfLUEmq.webp,https://static.pierrefrey.com/uploads/product/packshots/77b7ef40-a2d5-4d58-bf2a-ca25eb2a6cfb/1TxeIfwklKOKE3rUdM27.webp,https://static.pierrefrey.com/uploads/product/packshots/1b735f0f-d57a-4981-8ecf-a8d2694a9dd0/LRYeGa6wwx1Fdlybz0u7.webp,https://static.pierrefrey.com/uploads/product/packshots/680ab36b-8049-4a23-9071-5c4e8c8107d4/ChM4iWjmluYpXkauV7mR.webp,https://static.pierrefrey.com/uploads/product/packshots/0f6ddc04-1bba-4909-a921-3b1249e46739/qXakHuMMYdzW9dXc8wSc.webp,https://static.pierrefrey.com/uploads/product/packshots/7ed4a6e9-51b8-4d54-ba25-69ccb1959943/sKGRJrDugv8mrZT0fZOZ.webp,https://static.pierrefrey.com/uploads/product/packshots/0d845baf-2720-4ad0-ba84-11dbbef92d0d/dhSpu5Tynkb0QiK1fRyI.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:41.178Z"}
+{"mfr_sku":"FP943005","pattern_name":"Minneapolis","color_name":"Ombre","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP943005-minneapolis","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fb295663-6851-4a97-9d69-ee1698fcb952/19E6SrSWlmRBz7Bfj8WU_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Artist":"Élise Djo-Bourgeois","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 48 cm - 18,89 inch | Straight repeat","Weight":"175 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing | Traditional printing technique","Book":"F9979PPFREY38"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 48 cm - 18,89 inch | Straight repeat","weight":"175 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"Minneapolis","description":"Small width printed wallpapers, Minneapolis. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fb295663-6851-4a97-9d69-ee1698fcb952/19E6SrSWlmRBz7Bfj8WU.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fb295663-6851-4a97-9d69-ee1698fcb952/19E6SrSWlmRBz7Bfj8WU.webp","https://static.pierrefrey.com/uploads/product/packshots/66232b75-1f27-4d8b-9947-2ea23a081adb/U2TWxAaz8zfD5d4pwTsB.webp","https://static.pierrefrey.com/uploads/product/packshots/8766317b-834c-45ce-97dd-ae593ef38792/bgPQjzrIm5V2jqeuTo25.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fb295663-6851-4a97-9d69-ee1698fcb952/19E6SrSWlmRBz7Bfj8WU.webp,https://static.pierrefrey.com/uploads/product/packshots/66232b75-1f27-4d8b-9947-2ea23a081adb/U2TWxAaz8zfD5d4pwTsB.webp,https://static.pierrefrey.com/uploads/product/packshots/8766317b-834c-45ce-97dd-ae593ef38792/bgPQjzrIm5V2jqeuTo25.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:41.842Z"}
+{"mfr_sku":"FP949002","pattern_name":"Caribou","color_name":"Sapin","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP949002-caribou","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"137 cm / 53,93 inch","Repeat":"H: 137 cm - 53,00 inch | V: 85 cm - 33,46 inch | Half drop repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"137 cm / 53,93 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 85 cm - 33,46 inch | Half drop repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Caribou","description":"Wide width printed wallpapers, Caribou. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:42.566Z"}
+{"mfr_sku":"FP999001","pattern_name":"Emily","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP999001-emily","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fbe69fde-c7a9-412e-9302-929a70cd2edc/vRkNQfr2AiPHycKO8HO1_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Artist":"Emily Jackson","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 134 cm - 52,00 inch | V: 135 cm - 53,14 inch | Half drop repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY45"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 134 cm - 52,00 inch | V: 135 cm - 53,14 inch | Half drop repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Emily","description":"Wide width printed wallpapers, Emily. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fbe69fde-c7a9-412e-9302-929a70cd2edc/vRkNQfr2AiPHycKO8HO1.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fbe69fde-c7a9-412e-9302-929a70cd2edc/vRkNQfr2AiPHycKO8HO1.webp","https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp","https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp","https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp","https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp","https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp","https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp","https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp","https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp","https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp","https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp","https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp","https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp","https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp","https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp","https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp","https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp","https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp","https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp","https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp","https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp","https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp","https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp","https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp","https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp","https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp","https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp","https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp","https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp","https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp","https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp","https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp","https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp","https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp","https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp","https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp","https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp","https://static.pierrefrey.com/uploads/product/packshots/1558ff3e-7482-4ee6-9789-c6565ea5d544/O8CPK0mQcMu7xVqNRGtp.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fbe69fde-c7a9-412e-9302-929a70cd2edc/vRkNQfr2AiPHycKO8HO1.webp,https://static.pierrefrey.com/uploads/product/packshots/e64b0e2b-9a8a-49d1-a50b-0b9658f30a5c/4rrtdE1UJywTXtK6qGVE.webp,https://static.pierrefrey.com/uploads/product/packshots/5f50a276-42ad-43d1-97d8-07716ab5b8e3/skuAi55nylA4gVnmfAOe.webp,https://static.pierrefrey.com/uploads/product/packshots/0c921b64-daf6-46bb-ac92-b1a6eb196c2b/3PmpZJLSFzM9E8Hj2wDC.webp,https://static.pierrefrey.com/uploads/product/packshots/8a9ccc17-ea29-4096-86b4-8126a95c31e7/uOnjHYvCMlqKMdXMFdi5.webp,https://static.pierrefrey.com/uploads/product/packshots/47e604f1-84f3-4274-a569-be6296e2475b/hlDk7wvq3f0har5dFqZs.webp,https://static.pierrefrey.com/uploads/product/packshots/01380755-7f5b-4da2-a458-68a6410ca755/NWWj8i2O1VilVLG9G1kv.webp,https://static.pierrefrey.com/uploads/product/packshots/2653fc00-d226-419e-9783-7fb567926dfb/v2A9ZqUORTpAu0nlQUt5.webp,https://static.pierrefrey.com/uploads/product/packshots/e1487a7f-612e-4928-8b84-4577a0602e29/eIxoKxbT2dMHM62xlemL.webp,https://static.pierrefrey.com/uploads/product/packshots/503b1fdf-8f66-48b9-a955-6c4d712a8952/uhbH2xRkt3urvAmXSd91.webp,https://static.pierrefrey.com/uploads/product/packshots/d1294cc8-ec0a-4b32-a806-4aac1ce8e1c4/0AG5wrONbXxVrOsKBYvD.webp,https://static.pierrefrey.com/uploads/product/packshots/0bf61c45-5778-4428-a5d0-793478bf3d3b/yRwZYgIcGBVQzLsq3gVL.webp,https://static.pierrefrey.com/uploads/product/packshots/67b448ac-4ab5-4f86-a15f-2bb9d07c15a1/piIa1Pwm2wUuVd60pXEE.webp,https://static.pierrefrey.com/uploads/product/packshots/50a9929b-b209-4425-8fd4-d4ff4b2bf4bd/b8upewp2YJiMCSrdSfZj.webp,https://static.pierrefrey.com/uploads/product/packshots/3e58e52d-8bdb-4b5a-9ac9-63cb60c0ffa1/49mHOHbrD49ukk3PiyDn.webp,https://static.pierrefrey.com/uploads/product/packshots/56ec841c-13df-42b7-8658-441868544880/0Q5L2RAmtmLHnHYGSyRQ.webp,https://static.pierrefrey.com/uploads/product/packshots/87b379ae-ee79-462c-a0dc-d0279ec9ab0d/dqOcj8Q89HcsG6LXh4oE.webp,https://static.pierrefrey.com/uploads/product/packshots/2a94ca68-a170-4a18-8f4a-7f15a05f67eb/M3GRXhqYCIpPbfdaDyfv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcd2a5d-2e16-445d-91d2-29252293fd99/5N3QeU1By56NitSIPMNj.webp,https://static.pierrefrey.com/uploads/product/packshots/e4a71d09-b0fd-49ac-ba4a-3524a327209f/cwQFWdXXy0foI6AAcqE0.webp,https://static.pierrefrey.com/uploads/product/packshots/86a01446-06a1-483c-b559-da1a8d79ec05/eV5PA11oqfdh4UFPIWZ4.webp,https://static.pierrefrey.com/uploads/product/packshots/0bdc5ead-ddad-4d88-b59a-792e599370bd/7ZmjmIbujtNSJsfmJCtC.webp,https://static.pierrefrey.com/uploads/product/packshots/4cd273db-582a-4596-b7f0-8ec4824e501e/jMEtVy6FJyCpkhBpxafl.webp,https://static.pierrefrey.com/uploads/product/packshots/946fb01b-d71d-49b3-a575-a41390a711eb/3WUdSsqd7RFAeLIORRsx.webp,https://static.pierrefrey.com/uploads/product/packshots/8dc16e32-d615-4985-a3ed-593d29bd90e7/isXSWiyrm12GugEeIgRI.webp,https://static.pierrefrey.com/uploads/product/packshots/af94de7c-5165-4de9-8a92-dad6e0438635/XgorIRkR16IcpOTofPqs.webp,https://static.pierrefrey.com/uploads/product/packshots/90fad645-1dbd-4b88-9d34-d980b63501aa/Q4L9X4gtb9gPX6CLFgzV.webp,https://static.pierrefrey.com/uploads/product/packshots/f10c0b5c-2cf4-476f-8f82-b60b3330db73/8E686Kdp7n5bgeSRb8Bt.webp,https://static.pierrefrey.com/uploads/product/packshots/ba54ceb1-5cf5-40b2-be0f-b22de47e8563/bgDih9YRsOAJz0piweBV.webp,https://static.pierrefrey.com/uploads/product/packshots/57a0c1e7-8801-4a66-b55f-6b618d6070a1/CO98zcN25Obgw3d7VKs1.webp,https://static.pierrefrey.com/uploads/product/packshots/43bdce1e-63f0-48e0-8f8f-36592268fa8b/USVeJCYjMUv9CazpD2i3.webp,https://static.pierrefrey.com/uploads/product/packshots/8440aa00-060c-4fe0-913d-b2bc8bb1cdcc/W49k6w9ZK3iuzPHUdcZZ.webp,https://static.pierrefrey.com/uploads/product/packshots/c86d9251-2baf-461d-92c7-e6d5fb469d5f/aZ4UTBmA3ejexUVWQaOk.webp,https://static.pierrefrey.com/uploads/product/packshots/671115a6-c7b2-41dd-991f-f317b2edb704/hsHiGvsEN94EDWas2UrI.webp,https://static.pierrefrey.com/uploads/product/packshots/70f2addd-06d8-43c5-9cb9-27d99788477d/gClaegdzk4C5ujer6kTV.webp,https://static.pierrefrey.com/uploads/product/packshots/56f47c30-86c8-4fa8-bc42-d30f610aad5b/0TY3Cn4TDDEfRuCf7KMX.webp,https://static.pierrefrey.com/uploads/product/packshots/1cc07c09-ac77-425a-b8b5-c039c892f3a4/dZmBvdDiw7w47cNFTZCd.webp,https://static.pierrefrey.com/uploads/product/packshots/3c6d5a7b-c275-42b1-98f9-1148d903f14a/PJy0qcOvTLibdt5fsPdE.webp,https://static.pierrefrey.com/uploads/product/packshots/1558ff3e-7482-4ee6-9789-c6565ea5d544/O8CPK0mQcMu7xVqNRGtp.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:43.359Z"}
+{"mfr_sku":"FP504001","pattern_name":"Stone","color_name":"Sable","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP504001-stone","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"PAPER","Composition":"100 % Linen","Width":"140 cm / 55,11 inch","Repeat":"Free match","Weight":"230 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS C-s1,d1 | ASTM E84 Class A","Notes":"Flame retardant backing","Information":"Inherent irregularities from the natural fiber","Book":"F9979PPFREY14"},"width":"140 cm / 55,11 inch","composition":"100 % Linen","material":"PAPER","pattern_repeat":"Free match","weight":"230 gr / m²","certifications":"EUROCLASS C-s1,d1 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Stone","description":"Wide width printed wallpapers - Paperbacked fabrics, Stone. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ.webp","https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb.webp","https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd.webp","https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp.webp","https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fcbef9c8-c12c-496e-b7db-78ae59908764/PvO2WhfwgJhIeaU3I9aJ.webp,https://static.pierrefrey.com/uploads/product/packshots/a992c475-cecd-4058-afee-b3e6b20ac937/6pdsDV1TH0BNEpJhQQpb.webp,https://static.pierrefrey.com/uploads/product/packshots/7cb22bac-6524-4869-a551-fd60313c1b72/7pFOYF8DnY6V79YWgUTd.webp,https://static.pierrefrey.com/uploads/product/packshots/2ab70990-d69a-4bb6-a13d-28d4eae58ba9/Wc6xfeD1VXP5ncqkP6Sp.webp,https://static.pierrefrey.com/uploads/product/packshots/231cdd75-0655-459b-8598-c7dd014092de/BgOh20vTz6ohHdlNd4kg.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:44.050Z"}
+{"mfr_sku":"FP946005","pattern_name":"Toile de nantes intisse","color_name":"Celadon","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP946005-toile-de-nantes-intisse","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"127 cm / 50,00 inch","Repeat":"H: 42 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Flat screen printed","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"127 cm / 50,00 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 42 cm - 16,00 inch | V: 40 cm - 15,74 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Toile de nantes intisse","description":"Wide width printed wallpapers, Toile de nantes intisse. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp","https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp","https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp","https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp","https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp","https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp","https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp","https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp","https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp","https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp","https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp","https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp","https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp","https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp","https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp","https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp","https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp","https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp","https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp","https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp","https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp","https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp","https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp","https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp","https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp","https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp","https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp","https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp","https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp","https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp","https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp","https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp","https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp","https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp","https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp","https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp","https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp","https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fcfad383-aa9c-459a-8897-21b8bbc2d59e/gZpRBZzozgtrQYVMtd4k.webp,https://static.pierrefrey.com/uploads/product/packshots/c12fc9bd-99f4-4cdf-8d4b-381449de7476/CS02Db2vCdvbdH9xRliU.webp,https://static.pierrefrey.com/uploads/product/packshots/e1a6a77a-a4d8-425d-9a8e-ce171f0def69/gHPlIjEFQiJFKOdQutk2.webp,https://static.pierrefrey.com/uploads/product/packshots/070476a2-812a-4f27-a115-acb7b348c9ea/fuBDwKjbRBKt736dTM18.webp,https://static.pierrefrey.com/uploads/product/packshots/5fe12db4-230e-44c4-88ba-1a4669fb0a86/ECBHyIrHlwNsTpEeeSnt.webp,https://static.pierrefrey.com/uploads/product/packshots/ee6b0bdf-b0fe-482e-8445-f81a0860c854/fPiYzSy48UhNqsvRprHW.webp,https://static.pierrefrey.com/uploads/product/packshots/dd31599b-41c2-4a81-9713-5fb8c94a74b9/eQIY7E5FfCcWLO06jZKc.webp,https://static.pierrefrey.com/uploads/product/packshots/2a50c946-761b-435c-b937-0562dfc0343a/jjsMFDUNHQ3wTDFmnhVf.webp,https://static.pierrefrey.com/uploads/product/packshots/5925a6bb-4557-4a04-8413-bb5c6acb6ced/SEgSdbUx4Gl65lrEM5ge.webp,https://static.pierrefrey.com/uploads/product/packshots/aae787b3-809b-4cfe-a828-eb51ee1bb408/uh8ijKlueF8oto6lfGXf.webp,https://static.pierrefrey.com/uploads/product/packshots/6eded479-233c-407a-b07a-85d32b74eb20/8Sz0Wm5pp21jRYQ0N5VJ.webp,https://static.pierrefrey.com/uploads/product/packshots/53db29a5-d73a-4d65-82a6-d894fd54ab46/MYPXA0o3xSQiuGXgEwwS.webp,https://static.pierrefrey.com/uploads/product/packshots/cd03de7b-7b22-424c-8656-b4ad90d080a8/mJ9fV5GPo34VuDf6RBGL.webp,https://static.pierrefrey.com/uploads/product/packshots/8020e085-7cf8-41a9-bbe1-3ca6a5694cb0/7UbWzWCyMA9QtHlfkRJK.webp,https://static.pierrefrey.com/uploads/product/packshots/6cb8c703-a941-4a9a-bea2-f90a190f91ec/w7dzY6IpeTXTCRJXtBs6.webp,https://static.pierrefrey.com/uploads/product/packshots/5943f1c3-4c01-4f33-bbc3-1e7c5d135251/u3K15tm4IPXGkbZ4ToIj.webp,https://static.pierrefrey.com/uploads/product/packshots/6dd80939-b625-424d-9f95-531538c13eb2/Mq0DezMMteCoZVF4YVH4.webp,https://static.pierrefrey.com/uploads/product/packshots/f75385d5-26d2-458e-b992-e96b360db910/1Y830yvyCXD9h9ygQyEf.webp,https://static.pierrefrey.com/uploads/product/packshots/12eba2b7-010a-40bf-9815-925933b712ff/BWxUvEMsf3DTxVpZdVEV.webp,https://static.pierrefrey.com/uploads/product/packshots/c32f3928-04bd-4095-b683-d9e808c78899/cmmbUqL39Yn3n9qZLqWD.webp,https://static.pierrefrey.com/uploads/product/packshots/48b8bf35-5fc5-49b6-aaa9-71c39a198959/SERvsbfCQJQMmZluxREz.webp,https://static.pierrefrey.com/uploads/product/packshots/cdff35e2-0155-42cd-b10a-a5ce3ad62ba0/nPjBbXVSxSz80ziXIA74.webp,https://static.pierrefrey.com/uploads/product/packshots/f9e752a0-9efb-4956-b56e-87c8eff85e97/WTKEwmdwmsz3EIrGCyuQ.webp,https://static.pierrefrey.com/uploads/product/packshots/3569f3d2-10f6-4c67-8528-fbf73ac8648e/id1kUZgZ3ThU2Ctap9zb.webp,https://static.pierrefrey.com/uploads/product/packshots/dced0f2e-27f0-4030-9c98-ebe8b8d88b47/9YK7uLSwY1VoeCLGJBIJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fbb091ca-5a9f-4cd7-bc11-1f668bcf509d/NPl2QqHfbOBGpxT6KEPy.webp,https://static.pierrefrey.com/uploads/product/packshots/4c176042-7be1-41be-996a-76f32ec8b0e2/6tF4HlxzpYHHt0SzNF5L.webp,https://static.pierrefrey.com/uploads/product/packshots/02f3b914-2fe2-45e4-a65d-210021bc97b2/ZJsKAX2FfBDs3bkgHKPE.webp,https://static.pierrefrey.com/uploads/product/packshots/2964c238-3b81-4d30-b169-389102d4b2ef/UtHJyivaM9jkae8HIjIE.webp,https://static.pierrefrey.com/uploads/product/packshots/6bf214fe-26ad-412f-b59d-9396413c52ba/EzmC4w11N7B7J06X4PFJ.webp,https://static.pierrefrey.com/uploads/product/packshots/6a3e15e4-286e-4d35-a924-b228a2c9a80a/jqHcxPUTYuf83Jedrc7Q.webp,https://static.pierrefrey.com/uploads/product/packshots/bdb9bed7-6a94-421d-b366-ac06f1d17b9e/O4zrwZWLfSpEYEw7hfig.webp,https://static.pierrefrey.com/uploads/product/packshots/9658ccb3-eba1-4e8a-ae03-f17125ee5f9c/prdPkYMJX9VQWEpas36g.webp,https://static.pierrefrey.com/uploads/product/packshots/2c50b4a1-d6b2-4bdf-9d47-1cd9c7e8ab4f/MBD7GCCIk0Imbf8lo1Mk.webp,https://static.pierrefrey.com/uploads/product/packshots/735426fb-4fd2-42b9-a8f4-0532b8350608/nGzDgoten4gf9uGtVmCv.webp,https://static.pierrefrey.com/uploads/product/packshots/d7b255bd-bccd-46c9-93f7-45ef0ed18499/4s1ecoOkMzcfMWXvOZgP.webp,https://static.pierrefrey.com/uploads/product/packshots/10ae0ed7-2322-46fc-abdb-d1f82761ebde/zElMZTxcpuQASO67DJG9.webp,https://static.pierrefrey.com/uploads/product/packshots/5511751d-400d-462d-8b66-900aef9ba668/1SC6dQnSORnoQSulqspx.webp,https://static.pierrefrey.com/uploads/product/packshots/94f45441-7d5f-4bb9-afd3-aa3e2c4f2ca2/SeFHzCM7YugA5kaSnkcC.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:44.990Z"}
+{"mfr_sku":"FP611001","pattern_name":"Voyage en toscane la mer","color_name":"Fp611001","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP611001-voyage-en-toscane-la-mer","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers - Panoramic wallpapers","Sales Unit":"Full panoramic  137 cm x 300 cm ( 2 lengths  68 cm x 300 cm) -  53,93 in x 118,11 in( 2 lengths  26,77 in x 118,11 in)","Backing":"NON WOVEN","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 137 cm - 53,00 inch | V: 300 cm - 118,11 inch | Straight repeat","Weight":"147 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Flame retardant backing | Sold as a complete artwork","Information":"Panel effect | 1 roll = 2 panels"},"width":"68 cm / 26,77 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 137 cm - 53,00 inch | V: 300 cm - 118,11 inch | Straight repeat","weight":"147 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Full panoramic  137 cm x 300 cm ( 2 lengths  68 cm x 300 cm) -  53,93 in x 118,11 in( 2 lengths  26,77 in x 118,11 in)","roll_length":null,"collection":"Voyage en toscane la mer","description":"Small width printed wallpapers - Panoramic wallpapers, Voyage en toscane la mer. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp","https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp","https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp","https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp","https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp","https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp","https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp","https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp","https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp","https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/Gjn4sSZvgUwii54TrIjf.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/lOOLexTurjz10qBrebbv.webp,https://static.pierrefrey.com/uploads/product/packshots/df0859e2-cb01-4297-83d1-6e9add732fa2/EOafG7dNRa9U445bJnLX.webp,https://static.pierrefrey.com/uploads/product/packshots/23ea1107-9eda-4d61-a580-dea7347733c7/D42X2CwPsGkYIGUeRocc.webp,https://static.pierrefrey.com/uploads/product/packshots/f9008fa3-0559-469f-b257-32bbdc424977/w4sNO0SraGWg8QKHEZQA.webp,https://static.pierrefrey.com/uploads/product/packshots/be018f42-4813-4f88-8f1d-5c3644c95108/0UK2UwMSES6cJKqA9lqu.webp,https://static.pierrefrey.com/uploads/product/packshots/e7df5021-416c-4e55-b04e-0284fbb6320b/7oFHKNxSy40KtnLPeb1F.webp,https://static.pierrefrey.com/uploads/product/packshots/8cb00d83-b8c6-48e1-9c33-1478b2ea1ad6/oFHwOfYvLhPiuprVGKj9.webp,https://static.pierrefrey.com/uploads/product/packshots/374ded9d-279e-4227-8bf5-e273218cadbf/6fJJfj0ocqsgmQNVEfwc.webp,https://static.pierrefrey.com/uploads/product/packshots/a5a67860-437b-4ff1-8aa1-7dc8bdc54612/P3jhjiCPQ0oo3KRWsIEi.webp,https://static.pierrefrey.com/uploads/product/packshots/d8d825a9-93db-4db3-8660-7dfcfb018a5b/otVSIIIAZdmUTIzHo9Iu.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/Gjn4sSZvgUwii54TrIjf.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/fd26b9fe-3573-400c-a50b-3cd4ffc7bc0e/Gjn4sSZvgUwii54TrIjf.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:19:45.804Z"}
+{"mfr_sku":"BP208001","pattern_name":"Wallpaper marquis de seignelay","color_name":"Ochre/Green","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP208001-wallpaper-marquis-de-seignelay","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"73 cm / 28,74 inch","Repeat":"V: 106 cm - 41,73 inch | Straight repeat","Weight":"191 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"73 cm / 28,74 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 106 cm - 41,73 inch | Straight repeat","weight":"191 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper marquis de seignelay","description":"Small width printed wallpapers, Wallpaper marquis de seignelay. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp","https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp","https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp","https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp","https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp","https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp","https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp","https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp","https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp","https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp","https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp","https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp","https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp","https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp","https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp","https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp","https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp","https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp","https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp","https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp","https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp","https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp","https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp","https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp","https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp","https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp","https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp","https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp","https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp","https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp","https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp","https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp","https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp","https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp","https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp","https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp","https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp","https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp","https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp","https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp","https://static.pierrefrey.com/uploads/product/packshots/c367838e-3e30-4dda-ad51-4a67fd5219c4/yFiJmIOXPUOK82TKVUX7.webp","https://static.pierrefrey.com/uploads/product/packshots/f225b2c3-801d-4a78-810a-3f5a5c11ae34/hvJrE4p53te3nw8nA6Kf.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fd758003-131d-4180-9a13-29aa5e91558f/izbFZyy1i0k60ySEtijs.webp,https://static.pierrefrey.com/uploads/product/packshots/f5e8204e-20b9-4929-abe0-2d2e02731fd3/FbyDrZTfohMz7OHuLZA4.webp,https://static.pierrefrey.com/uploads/product/packshots/0dc7dbd3-e121-4d04-a959-042798e32fa9/LIBo2GEXBgaHBWzM0KnG.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e0606e-a582-4e02-a914-fdb56c781667/dpqTf6OFFU8MlLhhDUf7.webp,https://static.pierrefrey.com/uploads/product/packshots/eb5b821e-12fe-4f65-8059-63d8dc8f09fc/2Lie1H0pRAOdv8outLbl.webp,https://static.pierrefrey.com/uploads/product/packshots/7e9931b6-bb45-4369-9bc6-fcb3c755e08a/C5CDXzLt7k6HxmeCZHt5.webp,https://static.pierrefrey.com/uploads/product/packshots/3603659d-f8dc-49b9-bfe8-24cebdc7df90/moM93YzYNSdhPByRbv2Z.webp,https://static.pierrefrey.com/uploads/product/packshots/e604f48d-b655-473e-a7b3-750baf5375fb/9QmVdnZc2bMOmrZkRixf.webp,https://static.pierrefrey.com/uploads/product/packshots/192b778a-9616-497d-95ca-cab2a607aba4/rFTyfEG41YkMfglvhzMc.webp,https://static.pierrefrey.com/uploads/product/packshots/dcea98e8-e5cc-4f73-827b-4fd187061d13/YTaISV82oBL4WrB5PHkg.webp,https://static.pierrefrey.com/uploads/product/packshots/774754ee-c529-4047-b645-1259dc839670/iNawDhPVUF2zkLn5jw2u.webp,https://static.pierrefrey.com/uploads/product/packshots/1cb0daa8-c36b-4025-96d6-f86650eedbe7/nnNld88uu4wuR2sIlGEl.webp,https://static.pierrefrey.com/uploads/product/packshots/cc0de704-2077-47d8-83fc-aaf000b32772/PN2AmGhA60C580joWAPe.webp,https://static.pierrefrey.com/uploads/product/packshots/35042dc1-ed15-4adf-9ea0-e751f757bec7/vllvjxU7SyNMVGYd2rva.webp,https://static.pierrefrey.com/uploads/product/packshots/65c83cab-7d23-4d02-a6b7-91ba4e9bf502/EOLyKq7sjqXr1DDDXbEx.webp,https://static.pierrefrey.com/uploads/product/packshots/f33abf2d-35e4-4c03-ae5d-a855eb79e46e/tnSiBUntRYrcEboADZkM.webp,https://static.pierrefrey.com/uploads/product/packshots/a99ed6a8-4ca5-43ad-9b5d-1f01fcf20b64/20dBgvo1QitNPVm8UJ0h.webp,https://static.pierrefrey.com/uploads/product/packshots/72d6e314-c696-45fd-af54-f3b0a69d8033/NiOlzgfeY6QE7aP3B4wm.webp,https://static.pierrefrey.com/uploads/product/packshots/410f8ac3-f4bd-4b42-9e90-5b907403b876/XAEmxytveFxjkiWH8hdj.webp,https://static.pierrefrey.com/uploads/product/packshots/6aa50c65-9659-4e98-bbb9-9b654582b881/orH2C681Few3FX8lCq7L.webp,https://static.pierrefrey.com/uploads/product/packshots/68d6c85c-d63d-4b49-b325-c94285e03bfe/Xu1K7juiViQEMxXLTep0.webp,https://static.pierrefrey.com/uploads/product/packshots/4d9de789-227c-4852-a68e-980bd3a56dd1/Yhas1wsUB0HiPRjCklOG.webp,https://static.pierrefrey.com/uploads/product/packshots/af51baf6-aa1b-4f5e-bf15-4882f3ceda0b/qREQoWSr8rx2iqMAounh.webp,https://static.pierrefrey.com/uploads/product/packshots/2660fafb-5725-422c-a9cd-1a3fd31336b5/FEYSEb4zE4ngYcaeC6Nv.webp,https://static.pierrefrey.com/uploads/product/packshots/621bfffb-677d-4b37-b1b2-4069c31d6aa4/txXi5d9eQBjOLeIIsN6G.webp,https://static.pierrefrey.com/uploads/product/packshots/9bdac1e1-f79f-4c11-91fe-b1aad8137aee/sI0VOztww3QqhUOEjTzi.webp,https://static.pierrefrey.com/uploads/product/packshots/8a3ec4b0-a9c1-4304-8a2e-5e9d76c21027/W1Xib3v6TGlqxHHsJBX8.webp,https://static.pierrefrey.com/uploads/product/packshots/c09cae08-9510-4a5e-88b0-35bc9d50fcb0/P1ZDvnJRG2bBGhtRbg7O.webp,https://static.pierrefrey.com/uploads/product/packshots/0d8422c5-3e9f-4410-b75e-704c3ea10cc8/pZWAx2dLOrHn8CrHJRQV.webp,https://static.pierrefrey.com/uploads/product/packshots/eea511e8-0129-4dd0-a75a-ad19cfdeffa7/sECmx87yJ7xt9LCRDjQR.webp,https://static.pierrefrey.com/uploads/product/packshots/7e1b137a-7717-4527-8b08-ca33de12fc98/fVBoxtAWJGrWElmQpwMG.webp,https://static.pierrefrey.com/uploads/product/packshots/ada05498-9892-41e0-a590-12ff7d569efb/Fc3vCZ3wLs7z7g6lR7Rq.webp,https://static.pierrefrey.com/uploads/product/packshots/b45743f0-bc65-44fc-b416-5a9854f31137/L7ydnBfKBu9qG9SpOsQo.webp,https://static.pierrefrey.com/uploads/product/packshots/471267f1-84e3-47d4-84ac-6ce5dae83f15/UuyoQIpLjk7efqz3l8G1.webp,https://static.pierrefrey.com/uploads/product/packshots/691c058a-28e9-4b2e-9a60-f966b22a15bc/tHLbiFesRka1SWiKk6Uj.webp,https://static.pierrefrey.com/uploads/product/packshots/52b5dc10-70ff-415f-9fc0-c59597039dde/LuTP9rzMfg9qez10E7aD.webp,https://static.pierrefrey.com/uploads/product/packshots/f55d96e6-8d42-4d77-8dd3-030d7932f484/061RPrnUWwHa5CRddR4U.webp,https://static.pierrefrey.com/uploads/product/packshots/28352e04-0cfc-4b17-ac35-d6e8c82b821c/b5tCVRnBIyA15GPRAtCh.webp,https://static.pierrefrey.com/uploads/product/packshots/5260176f-b895-41d9-8462-d5e87544a5a2/S7xsFgj3Y6ZnTIdOvXdZ.webp,https://static.pierrefrey.com/uploads/product/packshots/dad5d921-d11d-4b71-9c42-db28263d80b4/qDiaqSItu9R4rnfoyaL1.webp,https://static.pierrefrey.com/uploads/product/packshots/f588476c-8ceb-49b6-975d-22953aebe62d/PZTJfFJWIRkmnz7GpZ9P.webp,https://static.pierrefrey.com/uploads/product/packshots/c367838e-3e30-4dda-ad51-4a67fd5219c4/yFiJmIOXPUOK82TKVUX7.webp,https://static.pierrefrey.com/uploads/product/packshots/f225b2c3-801d-4a78-810a-3f5a5c11ae34/hvJrE4p53te3nw8nA6Kf.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:46.662Z"}
+{"mfr_sku":"FP046001","pattern_name":"Ichika","color_name":"Vert","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP046001-ichika","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY_335x251_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 54 cm - 21,25 inch | Straight repeat","Weight":"185 gr / m²","Trimming":"Pretrimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Flame retardant backing","Information":"Use the trim & join marks during installation. Double-cut installation.","Book":"F9979PPFREY44"},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 54 cm - 21,25 inch | Straight repeat","weight":"185 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Ichika","description":"Wide width printed wallpapers, Ichika. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp","https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp","https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp","https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp","https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp","https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp","https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp","https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp","https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp","https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp","https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp","https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp","https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp","https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp","https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp","https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp","https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp","https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp","https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp","https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp","https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp","https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp","https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp","https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp","https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp","https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp","https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp","https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp","https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp","https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp","https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp","https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp","https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp","https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp","https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp","https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp","https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp","https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fd89c299-7783-462e-bb7a-b4d7a4523b14/hwVq7W8TwU0HXkOl6ysY.webp,https://static.pierrefrey.com/uploads/product/packshots/6fedfcfa-5c96-43c6-a7d3-19895320509c/le9Dw1T3D8xRvXJP6bX6.webp,https://static.pierrefrey.com/uploads/product/packshots/3edd82ef-35ab-4308-a6d6-bb80253b54a4/aRtM67gdQk7SAAkABDti.webp,https://static.pierrefrey.com/uploads/product/packshots/7282e118-a0ee-4479-957d-1f93b27325d1/iHWjToIjxE8YbXontoAM.webp,https://static.pierrefrey.com/uploads/product/packshots/028f8aa3-b9b4-4b86-8e10-c7de6561e500/cRd9fuVwvEB2ZVfEz8Mm.webp,https://static.pierrefrey.com/uploads/product/packshots/b383ecf6-00dd-4d98-85eb-9e7d3b728e7e/phtzAOBhvVvdAQHhVPE0.webp,https://static.pierrefrey.com/uploads/product/packshots/a149684f-32de-4ae9-862b-e4b116e61ff3/o0tAFPmGvwQWcgJAA8T9.webp,https://static.pierrefrey.com/uploads/product/packshots/a5e98bec-b76a-4cb3-9ab4-c008af1d08c9/SdMNNrlIKU0tbTLn9YZ6.webp,https://static.pierrefrey.com/uploads/product/packshots/b0d6fe79-1521-4f5c-960c-facee7fe3530/QPXL9wwpf9I5sCqxOhYm.webp,https://static.pierrefrey.com/uploads/product/packshots/54399e5d-36a6-45a6-8c3f-55d8b45f77c5/yjxfQ3CbKeoj8WE6u3YL.webp,https://static.pierrefrey.com/uploads/product/packshots/ad66c693-f283-474d-995d-6c7bac052cea/sPntc4mpqPhi2Fm8v1oT.webp,https://static.pierrefrey.com/uploads/product/packshots/359c163a-5d82-4f5c-b265-a24e92a982cf/f31N1PAWe1lOMKCN3Ci4.webp,https://static.pierrefrey.com/uploads/product/packshots/5c896e41-09bc-4a13-9645-b80ab9624da6/8JQPttlH2XqTWyRHs356.webp,https://static.pierrefrey.com/uploads/product/packshots/723920fb-34e1-4fdf-982e-838a83650997/I8OrdXC7mw76M7OAHm2C.webp,https://static.pierrefrey.com/uploads/product/packshots/10791bbf-f133-47f9-9207-a276d726e7dd/j0hc4FaJUOvJprosc07Z.webp,https://static.pierrefrey.com/uploads/product/packshots/f3a8a5d8-8e50-4e5a-9262-8389752c467a/dqKbahlDylqxAj3I6cXP.webp,https://static.pierrefrey.com/uploads/product/packshots/bb308078-b742-4527-89b6-0e99e2482b6c/UdJ0JTtPCYnwzru0Z9aX.webp,https://static.pierrefrey.com/uploads/product/packshots/170f4850-8ffd-4683-9795-56ff9e0aca2c/qWIWDVz7y6W2GGIAiaET.webp,https://static.pierrefrey.com/uploads/product/packshots/c29da8c0-4bc9-493b-9123-56002488f2e7/Q5uz1cTTScokGlQACr4z.webp,https://static.pierrefrey.com/uploads/product/packshots/c0f59fe2-3f1b-4a31-988c-cb928529ed6f/tUA6TQYyLaUDvbzJvscz.webp,https://static.pierrefrey.com/uploads/product/packshots/622a68ac-f746-43f1-9890-cbe6bbec1c8b/m41fSOM41ws1xvTDGpic.webp,https://static.pierrefrey.com/uploads/product/packshots/86ed7329-cd59-4ccc-9c78-6a90da14ac56/D2DcfArdK4XmsCqOjUXN.webp,https://static.pierrefrey.com/uploads/product/packshots/64829a96-53c8-472c-890c-fe513e16b3f2/bInTtCWOGOXzLIJhUTFr.webp,https://static.pierrefrey.com/uploads/product/packshots/7050e5f0-c7ab-423f-a263-7f1b88de29ed/reT9o1Bd42yuGJG72pjD.webp,https://static.pierrefrey.com/uploads/product/packshots/c66aa27e-9277-4086-b27a-5d4e6914ec3f/bKebgjIUJ4tVZHm0REd7.webp,https://static.pierrefrey.com/uploads/product/packshots/d1764925-d0bc-4c41-a1b4-840f27dee762/aaPVlYKl7837dBYXMIRu.webp,https://static.pierrefrey.com/uploads/product/packshots/9801b59b-b198-44bc-a74b-fadc2791d3dc/CiMCOsPmjNxhRkbaODJe.webp,https://static.pierrefrey.com/uploads/product/packshots/a04da4f0-b247-4b0d-b0f4-2c7cfd82272e/lZrVG6KUfD3TwabkuECW.webp,https://static.pierrefrey.com/uploads/product/packshots/6a8731de-5d68-4ec2-a2a2-f47e54c1c645/zWfeby9Ec7AHaGDP8acG.webp,https://static.pierrefrey.com/uploads/product/packshots/641fbb19-eed1-463c-8862-0c686751b0dc/jfBu9bLmUqDZSzbmRgad.webp,https://static.pierrefrey.com/uploads/product/packshots/e8dc0a5a-f818-45f3-81e0-c8620ed3fb30/rrBZETikYd1WC4HbfKWd.webp,https://static.pierrefrey.com/uploads/product/packshots/ad8d85ca-d6f5-4eb6-bc28-f886bf121cd7/DcMdu9Djd2yNYTlvGaUM.webp,https://static.pierrefrey.com/uploads/product/packshots/1268a799-932d-4873-8b0c-a9807a0c76a5/ZnHQzAKIAUqpcXnJ1zNT.webp,https://static.pierrefrey.com/uploads/product/packshots/d6976e5b-001b-485c-a71a-a1b07c03c8bf/xgtsZbdxYWkwMRWNiUUV.webp,https://static.pierrefrey.com/uploads/product/packshots/f3960efb-54b0-46da-8c73-c4b2e0abfce7/CnUvGpzwULrEVNLlmp63.webp,https://static.pierrefrey.com/uploads/product/packshots/487cedfd-b333-43a3-8405-cc715e4125fe/QZViL96KVkBbT35r3Q0M.webp,https://static.pierrefrey.com/uploads/product/packshots/0fab7f3f-6e8e-477d-926c-1d69b9a3d3d2/CkzqMdgNrTwCePWZa1XZ.webp,https://static.pierrefrey.com/uploads/product/packshots/34cb575b-3074-435a-a609-0cebda795ff6/2i3UpcYz4enDKXzP0sw5.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:47.526Z"}
+{"mfr_sku":"FP935001","pattern_name":"Blake","color_name":"Blanc","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP935001-blake","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL_335x251_webp.webp","specs":{"Type":"Embossed patterns - Paperbacked fabrics","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"100 % Linen","Width":"120 cm / 47,24 inch","Repeat":"H: 17 cm - 6,00 inch | V: 28 cm - 11,02 inch | Straight repeat","Weight":"280 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Wet removable","Certifications":"ASTM E84 Class A","Notes":"Raised pattern","Book":"F9979PPFREY36"},"width":"120 cm / 47,24 inch","composition":"100 % Linen","material":"NON WOVEN","pattern_repeat":"H: 17 cm - 6,00 inch | V: 28 cm - 11,02 inch | Straight repeat","weight":"280 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Blake","description":"Embossed patterns - Paperbacked fabrics, Blake. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp","https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp","https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp","https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp","https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp","https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp","https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp","https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp","https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp","https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp","https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp","https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp","https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp","https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp","https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp","https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp","https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp","https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp","https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp","https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp","https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp","https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp","https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp","https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp","https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp","https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp","https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp","https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp","https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp","https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp","https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp","https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp","https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp","https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fe09f352-6e73-4017-b0bd-932cfb436fbc/OBdE69wvmXARNTSblViL.webp,https://static.pierrefrey.com/uploads/product/packshots/d834739a-cf31-4fcf-9c05-0e8583562ae1/Os5DpAGSQe77TMbvzexW.webp,https://static.pierrefrey.com/uploads/product/packshots/274031e8-3709-4bf4-9e4b-97f4cba2358e/qcZZ12XKX5pjsVCMu9ho.webp,https://static.pierrefrey.com/uploads/product/packshots/ae0af1ec-ef93-4820-9955-6b05979b587d/bhNQtJdeTrMKJ7KPpcRr.webp,https://static.pierrefrey.com/uploads/product/packshots/b9938056-5e65-45f0-845e-43ed78d332cb/dVRjy2u0Rs8YUBguqNWS.webp,https://static.pierrefrey.com/uploads/product/packshots/650f4f81-3afc-4361-ae81-760c01abe001/L0I9OTNlgGr1xL1yidIH.webp,https://static.pierrefrey.com/uploads/product/packshots/b54e61f3-6586-4dc0-bb78-0c5b574442d0/3Jmd4FmDUU3ziKAoRijX.webp,https://static.pierrefrey.com/uploads/product/packshots/003a0ff9-744d-4b9d-a03c-8737ff4cceef/JQGIR2j9zVA1WizYx3gq.webp,https://static.pierrefrey.com/uploads/product/packshots/cadc0192-a823-4fe1-b4ad-3b98937571ec/w3ViJJtZfTDqbhij4MTq.webp,https://static.pierrefrey.com/uploads/product/packshots/80a19485-ed33-49cf-b429-c7d03d4f6b96/YVHnrm3GpjexhZQOmuOA.webp,https://static.pierrefrey.com/uploads/product/packshots/0062db88-093e-4aa1-a074-fc73505a7a32/LpGIFePGCX4Qnw54g2Wj.webp,https://static.pierrefrey.com/uploads/product/packshots/e0fda48a-ed02-495e-a685-66e47194fb92/NlnHNGVm7pM5DfAocahb.webp,https://static.pierrefrey.com/uploads/product/packshots/cd581aac-2edf-4d5a-be16-062988f6982b/joMI1IXRhnBErnBNXIGL.webp,https://static.pierrefrey.com/uploads/product/packshots/96ba883c-89e2-4eb7-9604-52354c4c8a15/CNPUeJ6obKNMFHonhP5u.webp,https://static.pierrefrey.com/uploads/product/packshots/edd38788-3f3d-448a-a51e-2524dd70746d/5TTVStzSYSCyLJ5FDZS0.webp,https://static.pierrefrey.com/uploads/product/packshots/4c4c713b-a7d1-4c7d-b033-9f47d209dd83/gPRSW8ybGdfQLSXfzW47.webp,https://static.pierrefrey.com/uploads/product/packshots/debed371-d950-43ee-ac77-65e45df640ac/DgSBTLuAQKCeNrfbB4Zi.webp,https://static.pierrefrey.com/uploads/product/packshots/1e301c2b-e898-49f3-9cf7-0fc5a937d7a5/Kurtkr9pwcks3wFk3Sy5.webp,https://static.pierrefrey.com/uploads/product/packshots/4c1a6adf-8c2c-4ba4-a0de-5dfb1b4a7e81/nVYaxEMHpBZXLcTtfTvu.webp,https://static.pierrefrey.com/uploads/product/packshots/0cf7b9e6-f197-492d-95ea-93223dba418c/SLLhW56lkOUAU3bciJNO.webp,https://static.pierrefrey.com/uploads/product/packshots/28ec6154-3145-4cc1-8b44-0d11299e90af/KCMErTvVN3kkKyc6OfWT.webp,https://static.pierrefrey.com/uploads/product/packshots/f2fa985b-f883-446c-9135-4b8b49b18ac0/GSbnySitKweMQEgzMBU4.webp,https://static.pierrefrey.com/uploads/product/packshots/da170b2a-53a2-4a0c-88e1-1e348503be21/3UiXwNJpctZapiC6icwn.webp,https://static.pierrefrey.com/uploads/product/packshots/388bd444-db73-49fe-841f-af3e28b8830c/ptImLEkTqk9SXLp74aMB.webp,https://static.pierrefrey.com/uploads/product/packshots/a43c0b9b-8060-43d5-ba6d-4fc6a3d3bf9c/slnYq14ZyBVe38KUR7op.webp,https://static.pierrefrey.com/uploads/product/packshots/d3d81f73-927a-4c3a-8685-154931fe80c0/EHeJjHmXlozndu6dGLCT.webp,https://static.pierrefrey.com/uploads/product/packshots/92b46a1e-64ea-4213-b2a0-6af56c542833/Ze8Dzr6jmwTEClvQsp7f.webp,https://static.pierrefrey.com/uploads/product/packshots/7425c355-fd9a-44c3-a611-0962a0c3ab8c/9XQ8ayBmOitICHhDvkDX.webp,https://static.pierrefrey.com/uploads/product/packshots/3a01c27c-aa4e-4641-9d7c-78a53b4e01f3/l4SURgHLsw374yx9b1kI.webp,https://static.pierrefrey.com/uploads/product/packshots/26339e96-31d1-42b9-a050-983f3ed008a6/WOqHWP9WqvAMUlaSBwuI.webp,https://static.pierrefrey.com/uploads/product/packshots/8e2803d2-5c0c-4e20-8ed2-6a7780c3adb5/KIwpQHLpdJT3arEU108I.webp,https://static.pierrefrey.com/uploads/product/packshots/7774d8d3-066e-41eb-97f5-ebeb6d365023/yYGNaxq1xv49hB0un823.webp,https://static.pierrefrey.com/uploads/product/packshots/6c65fc23-8dd3-44ef-9002-fbd2b9bed246/oMAUvUJLWj9CpZWfd29c.webp,https://static.pierrefrey.com/uploads/product/packshots/372f8f68-44fd-4c70-a87a-ae84f45591f2/vL4avsemkkM8y9Ojy72s.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:48.410Z"}
+{"mfr_sku":"LP110002","pattern_name":"Taraz","color_name":"Pivoine","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/LP110002-taraz","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"68 cm / 26,77 inch","Repeat":"H: 69 cm - 27,00 inch | V: 82 cm - 32,28 inch | Straight repeat","Weight":"150 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation.","Book":"L9979PPLM01"},"width":"68 cm / 26,77 inch","composition":"-","material":"PAPER","pattern_repeat":"H: 69 cm - 27,00 inch | V: 82 cm - 32,28 inch | Straight repeat","weight":"150 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Taraz","description":"Small width printed wallpapers, Taraz. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp","https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp","https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp","https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp","https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp","https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp","https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp","https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp","https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp","https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp","https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp","https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp","https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp","https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp","https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp","https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp","https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp","https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp","https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp","https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp","https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp","https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp","https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp","https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp","https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp","https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp","https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp","https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp","https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp","https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp","https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp","https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp","https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp","https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp","https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp","https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp","https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp","https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp","https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp","https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp","https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp","https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp","https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp","https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp","https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp","https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp","https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp","https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp","https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fedc6e37-a78a-4d33-b11b-759a560a671c/5gRAPtfAYtfSXV3W8Y3Z.webp,https://static.pierrefrey.com/uploads/product/packshots/efe94726-9e79-45ec-8f8e-364f639d3b43/GPmsTnxraKyk1u7SSlyp.webp,https://static.pierrefrey.com/uploads/product/packshots/6f921eb0-1d54-45f0-a08c-e840f2708075/flqzaDb7MXEQOZl2cVyO.webp,https://static.pierrefrey.com/uploads/product/packshots/b577ec90-0a8b-4ae0-8824-1d85bdc9c2b1/R8KpLjlt764lRjk6yFze.webp,https://static.pierrefrey.com/uploads/product/packshots/6ab34c08-2db5-449d-81d5-0f72237e0f02/82vKOgrBk4xeqzPJMYZY.webp,https://static.pierrefrey.com/uploads/product/packshots/611c58d8-83b6-4f64-9f5b-53ca0efa7831/pJxcnefGaZmzwyjj06iq.webp,https://static.pierrefrey.com/uploads/product/packshots/98564ac2-723f-4745-89c3-822287be83be/cbnVSxmm73fhNY7kNJwd.webp,https://static.pierrefrey.com/uploads/product/packshots/9fd18ff0-28ad-46f6-815d-fb6f12117083/Oho39TrXl5pZDK9pcvfg.webp,https://static.pierrefrey.com/uploads/product/packshots/ad858136-2624-4c15-9b6e-88faf52f6149/23VYkfniFJe5MqfW7358.webp,https://static.pierrefrey.com/uploads/product/packshots/eefc4484-e69c-4cc0-9c55-02abe56fb600/ZNwQGW7qhOvmFCgPwiQg.webp,https://static.pierrefrey.com/uploads/product/packshots/21b1b3c8-16d4-4354-833a-e61fa44c0e1e/MkO8tPGAGsuZ6waX7uJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/9ad74f3b-4802-4020-8e53-864d010537cc/RHPfmXPXB4m1T1RqCpoL.webp,https://static.pierrefrey.com/uploads/product/packshots/10e13a45-4b01-4da2-988d-10736afb7d76/WgR9gO6t4r6Pmv7nAQBX.webp,https://static.pierrefrey.com/uploads/product/packshots/bbc7099b-a5b6-4044-905c-dbb8044919b2/ReAVKKGyMCDFwoDodwnf.webp,https://static.pierrefrey.com/uploads/product/packshots/7130c486-2de3-416f-a96c-2d214b2d6b47/i7nYg58kuNglkP05k7F4.webp,https://static.pierrefrey.com/uploads/product/packshots/e03ef7f3-7ef4-401e-9af6-2cc897fe9ddf/6RAk80AoJcRdbfz4WhVG.webp,https://static.pierrefrey.com/uploads/product/packshots/819b68bf-e0e0-4c76-875c-51a47b8850dc/pENr7k0LoEjT0CdDpxaj.webp,https://static.pierrefrey.com/uploads/product/packshots/0ed7796a-7e78-41fd-bfdd-bfa256604e03/xIAUKZakRc5Nzl39b5y2.webp,https://static.pierrefrey.com/uploads/product/packshots/038954e2-b6fd-4b88-96bf-73f848df9052/dfFqyKV8w1A2ecdoIJyM.webp,https://static.pierrefrey.com/uploads/product/packshots/ca435602-9d85-49bd-a1c5-5f3077ac4514/DYhZAwU7HUgkd8SgxRx4.webp,https://static.pierrefrey.com/uploads/product/packshots/bbdc5b60-95e4-4a91-b326-443bb08ee1a1/982wwJwS0AbRU6vmsdkY.webp,https://static.pierrefrey.com/uploads/product/packshots/2f7626f8-dcf2-4fa3-ad43-556bf7537ea0/671Zubn1xR6ID6Qb0Ilb.webp,https://static.pierrefrey.com/uploads/product/packshots/5803da57-c195-4d22-acbe-9fd7f81cf71b/LneAyGS2NFP58ZJzVuxz.webp,https://static.pierrefrey.com/uploads/product/packshots/00b22538-6077-4ed9-8d74-e9577935c5ff/kVwEUVGp6tK1V6GhYOa6.webp,https://static.pierrefrey.com/uploads/product/packshots/2e34eff3-98cb-4d62-8101-a4d3cc6a7252/TWEEQkguCNCV4KRWSEbz.webp,https://static.pierrefrey.com/uploads/product/packshots/86a8fd71-3314-45e6-8c48-b9592cd05b1e/Om6fvlJMzkdU0TCkzonY.webp,https://static.pierrefrey.com/uploads/product/packshots/129c8a09-4418-4dbe-afb9-7e55189545ce/eIpyvlE3Zx2FL5fCEtGM.webp,https://static.pierrefrey.com/uploads/product/packshots/ea3afc3c-54b9-46de-866c-72b4b9544fc3/IAkVYeNf1CqI99zpTMIj.webp,https://static.pierrefrey.com/uploads/product/packshots/c11d4153-0916-4904-9ca2-7c797da321e1/MiRAVD3bQWVOHyAnwZbi.webp,https://static.pierrefrey.com/uploads/product/packshots/377bf3b6-2f4c-4d23-a11d-45fedb6bd907/cDlfKt2SW1fE2h3eXQOw.webp,https://static.pierrefrey.com/uploads/product/packshots/45197386-15a0-4bec-a7ab-f106441c472e/iRCcpiKmc3lDwnhAuWJR.webp,https://static.pierrefrey.com/uploads/product/packshots/49a27fe7-4258-49a4-bb5f-38a259cc9af3/zxB04xeHITc2ZKhJCaTW.webp,https://static.pierrefrey.com/uploads/product/packshots/eaddf838-6ac2-4dc1-8108-d92b038182ae/xnMimz2TmjqvAaqlYCNV.webp,https://static.pierrefrey.com/uploads/product/packshots/5566b6ec-039d-4336-8af0-388a8180f4dc/vJcPKbGX1FkcbpTG5MR8.webp,https://static.pierrefrey.com/uploads/product/packshots/218e66bd-5ca8-4d68-9fdc-46e9d7dd5f2d/PNtbO1qVPdm0aAnqZtQT.webp,https://static.pierrefrey.com/uploads/product/packshots/dedaa66e-b566-46ba-be90-374972daeb94/ldNGQgMzl24Zgl49OrSc.webp,https://static.pierrefrey.com/uploads/product/packshots/038cbd35-78a4-4833-b244-2258630506ce/xH4hdow58dDFWsw99zLH.webp,https://static.pierrefrey.com/uploads/product/packshots/73a029ff-bfff-4a0d-af05-849e2b551773/aMJBIWETNmxYqMtUO9mI.webp,https://static.pierrefrey.com/uploads/product/packshots/86762c79-311b-473d-a90f-f2d28cbf2307/PsZu7Bfy9W3kEK9kFXcM.webp,https://static.pierrefrey.com/uploads/product/packshots/d388b1d7-c70f-4f53-931a-d53997788f70/T86riyNnyo6C0ennY1Zu.webp,https://static.pierrefrey.com/uploads/product/packshots/236c69d0-f243-476b-aba5-c7eabaa70646/BKPAI5HZyp4aejo5rn5u.webp,https://static.pierrefrey.com/uploads/product/packshots/6b05e499-d3f2-426a-8a7c-c8d527349e0c/npzs2zMyWVUvSSYefw5e.webp,https://static.pierrefrey.com/uploads/product/packshots/217b04ed-9d91-4388-ac3f-287f6c7d7ba6/ue0PUXbGTjioNgRtYxG9.webp,https://static.pierrefrey.com/uploads/product/packshots/b3cfa5ad-59f6-4600-a156-beff04feaa56/Kve9CCK48XKKaCptnWf3.webp,https://static.pierrefrey.com/uploads/product/packshots/d628c1fe-80d0-4fde-92a8-495996dad3d2/mdgB1BZOuKxTNh0tck00.webp,https://static.pierrefrey.com/uploads/product/packshots/c50672b5-249f-42d8-afcb-38303e85eb7d/rTEPzbeWrKphvwKrh1IY.webp,https://static.pierrefrey.com/uploads/product/packshots/c11473a1-906c-47be-a453-8f7296056e51/SIkZROfxghNtxMur2k6W.webp,https://static.pierrefrey.com/uploads/product/packshots/7a12da42-b102-498c-88bd-ae46be630bf5/sbe9ZpJitZmAb7c9ZnNL.webp,https://static.pierrefrey.com/uploads/product/packshots/16fbe386-3c94-4033-88f7-e223590c4c87/bilxOSCv8G0THaujdF2o.webp,https://static.pierrefrey.com/uploads/product/packshots/ca27d11c-865d-4a86-9f12-0731f75a0281/HxO76uvBYYgOgIdUmCNT.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:49.216Z"}
+{"mfr_sku":"BP328005","pattern_name":"La comedie","color_name":"Bp328005","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP328005-la-comedie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of 10,05 mts","Backing":"NON WOVEN","Composition":"-","Width":"52 cm / 20,47 inch","Repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Straight repeat","Weight":"180 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Good lightfastness | Traditional printing technique","Book":"B9979PPBRAQ4"},"width":"52 cm / 20,47 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 52 cm - 20,00 inch | V: 52 cm - 20,47 inch | Straight repeat","weight":"180 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of 10,05 mts","roll_length":null,"collection":"La comedie","description":"Small width printed wallpapers, La comedie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:50.128Z"}
+{"mfr_sku":"W4515A08","pattern_name":"Wallpaper kanawa","color_name":"Icy White","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4515A08-wallpaper-kanawa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 91 cm - 35,82 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 91 cm - 35,82 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper kanawa","description":"Small width printed wallpapers, Wallpaper kanawa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:51.078Z"}
+{"mfr_sku":"W4515A09","pattern_name":"Wallpaper kanawa","color_name":"Black White","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4515A09-wallpaper-kanawa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 91 cm - 35,82 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 91 cm - 35,82 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper kanawa","description":"Small width printed wallpapers, Wallpaper kanawa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:52.039Z"}
+{"mfr_sku":"W4515A11","pattern_name":"Wallpaper kanawa","color_name":"Platinum","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4515A11-wallpaper-kanawa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 91 cm - 35,82 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 91 cm - 35,82 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper kanawa","description":"Small width printed wallpapers, Wallpaper kanawa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:52.758Z"}
+{"mfr_sku":"W4515B07","pattern_name":"Wallpaper kanawa","color_name":"Black Ivory","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4515B07-wallpaper-kanawa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 91 cm - 35,82 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 91 cm - 35,82 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper kanawa","description":"Small width printed wallpapers, Wallpaper kanawa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:53.542Z"}
+{"mfr_sku":"W4515B08","pattern_name":"Wallpaper kanawa","color_name":"Icy White","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4515B08-wallpaper-kanawa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 91 cm - 35,82 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 91 cm - 35,82 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper kanawa","description":"Small width printed wallpapers, Wallpaper kanawa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:54.314Z"}
+{"mfr_sku":"W4515B09","pattern_name":"Wallpaper kanawa","color_name":"Black White","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4515B09-wallpaper-kanawa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 91 cm - 35,82 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 91 cm - 35,82 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper kanawa","description":"Small width printed wallpapers, Wallpaper kanawa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:55.087Z"}
+{"mfr_sku":"W4515B11","pattern_name":"Wallpaper kanawa","color_name":"Platinum","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4515B11-wallpaper-kanawa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 91 cm - 35,82 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 91 cm - 35,82 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper kanawa","description":"Small width printed wallpapers, Wallpaper kanawa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:55.933Z"}
+{"mfr_sku":"BP317001","pattern_name":"Anne-marie","color_name":"Original","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP317001-anne-marie","list_image":"https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy_251x335_webp.webp","specs":{"Type":"Wide width printed wallpapers","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"-","Width":"134 cm / 52,75 inch","Repeat":"H: 67 cm - 26,00 inch | V: 116 cm - 45,66 inch | Straight repeat","Weight":"209 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Notes":"Good lightfastness | Hand screen printed","Information":"Use the trim & join marks during installation. Double-cut installation."},"width":"134 cm / 52,75 inch","composition":"-","material":"NON WOVEN","pattern_repeat":"H: 67 cm - 26,00 inch | V: 116 cm - 45,66 inch | Straight repeat","weight":"209 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Anne-marie","description":"Wide width printed wallpapers, Anne-marie. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp","https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp","https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp","https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp","https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp","https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp","https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp","https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/f442e631-3131-4381-80b2-0ea8f1f725df/h4KGCLjZB6FOapp9wISy.webp,https://static.pierrefrey.com/uploads/product/packshots/02c4b76b-9b39-4a1f-a6fe-426c19be7ee2/eE0pyQxSkBaHMcbaliFP.webp,https://static.pierrefrey.com/uploads/product/packshots/6b82e959-7b19-4dc3-ad07-1e91f7089e82/WM4wa7lUG9wwuMT2Pjjp.webp,https://static.pierrefrey.com/uploads/product/packshots/a9de9a39-f3d4-42aa-b11f-238fb0cc4acd/YTmaMiB3pRaUFuyALC6E.webp,https://static.pierrefrey.com/uploads/product/packshots/7ceef235-c3a3-49e4-923d-e4568dee10cd/mWYQgVLPpN6exFVEs6Ka.webp,https://static.pierrefrey.com/uploads/product/packshots/78767898-ddf4-4bfb-bb3f-5d152ddb9926/IQbyxx295ghLIsqx1cOE.webp,https://static.pierrefrey.com/uploads/product/packshots/2ffddb22-0b4d-43a3-ae30-a5ea780b26ed/vaEcjvdaS2tvtEpZbspY.webp,https://static.pierrefrey.com/uploads/product/packshots/063971a5-c94a-4cf7-a5e7-96611a45e5c1/ue3Cqv7JU9WXV8WJxAea.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:56.707Z"}
+{"mfr_sku":"FP452002","pattern_name":"Lan-fish","color_name":"Mare","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/FP452002-lan-fish","list_image":"https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf_335x251_webp.webp","specs":{"Type":"Paperbacked fabrics - Straws and similar materials","Sales Unit":"Available per meter/yard","Backing":"NON WOVEN","Composition":"40 % Viscose - 40 % Cotton - 20 % Polyester","Width":"144 cm / 56,69 inch","Repeat":"H: 72 cm - 28,00 inch | V: 71 cm - 27,95 inch | Straight repeat","Weight":"310 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"ASTM E84 Class A","Book":"F9979PPFREY10"},"width":"144 cm / 56,69 inch","composition":"40 % Viscose - 40 % Cotton - 20 % Polyester","material":"NON WOVEN","pattern_repeat":"H: 72 cm - 28,00 inch | V: 71 cm - 27,95 inch | Straight repeat","weight":"310 gr / m²","certifications":"ASTM E84 Class A","sales_unit":"Available per meter/yard","roll_length":null,"collection":"Lan-fish","description":"Paperbacked fabrics - Straws and similar materials, Lan-fish. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp","https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp","https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp","https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp","https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp","https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/82e4ce06-60d3-4ef1-9f13-2438d408febc/11Df1M3GZUq65VxtBnwf.webp,https://static.pierrefrey.com/uploads/product/packshots/db1d7b80-4ebc-4b74-8fd9-8f98ae653174/NQ1cvSR1mStEi8ExLSIN.webp,https://static.pierrefrey.com/uploads/product/packshots/8a32ab47-9481-4144-8eba-e07bbf3f8a23/6CSLhxSj0eYHfOzWTvJn.webp,https://static.pierrefrey.com/uploads/product/packshots/2febe69d-b624-4b9a-aecf-42a8118a71d2/xIP1aP8YVMrUiAR0yyhI.webp,https://static.pierrefrey.com/uploads/product/packshots/812504da-7bd2-47b7-b004-340edc43251f/IIsA526G8ex1HxCmbTGK.webp,https://static.pierrefrey.com/uploads/product/packshots/731c0c82-4306-4db4-a1cb-f00740e96554/ONwiikvvJFqkUZ7tKX9m.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:57.371Z"}
+{"mfr_sku":"W4515A07","pattern_name":"Wallpaper kanawa","color_name":"Black Ivory","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/W4515A07-wallpaper-kanawa","list_image":"https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk_251x335_webp.webp","specs":{"Type":"Small width printed wallpapers","Sales Unit":"Available per roll of  4,57 mts","Backing":"PAPER","Composition":"-","Width":"69 cm / 27,16 inch","Repeat":"V: 91 cm - 35,82 inch | Straight repeat","Weight":"187 gr / m²","Trimming":"Not trimmed","Hanging/Removing":"Paste the paper | Wet removable","Certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","Notes":"Hand screen printed","Information":"Soaking time before hanging: maximum 2 minutes. | Use the trim & join marks during installation. Double-cut installation."},"width":"69 cm / 27,16 inch","composition":"-","material":"PAPER","pattern_repeat":"V: 91 cm - 35,82 inch | Straight repeat","weight":"187 gr / m²","certifications":"EUROCLASS B-s1,d0 | ASTM E84 Class A","sales_unit":"Available per roll of  4,57 mts","roll_length":null,"collection":"Wallpaper kanawa","description":"Small width printed wallpapers, Wallpaper kanawa. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp","https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp","https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp","https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp","https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp","https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp","https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp","https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp","https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp","https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp","https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp","https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp","https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp","https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp","https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp","https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp","https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp","https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp","https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp","https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp","https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp","https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp","https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp","https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp","https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp","https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp","https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp","https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp","https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp","https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp","https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp","https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp","https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp","https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp","https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp","https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp","https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp","https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp","https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp","https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp","https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp","https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/8fcbe305-d575-4147-8f49-ec6e9550e822/IVm7x4sTU7wIsGJXWrJk.webp,https://static.pierrefrey.com/uploads/product/packshots/5547b1ae-55bb-43bf-98fa-c592a1f8e3e1/GkWACs1x8fYAMCrd2Zfe.webp,https://static.pierrefrey.com/uploads/product/packshots/6e1f975e-50ea-4a67-99fc-f88a207fb9d9/81MYnkCorIH43XC7P5zv.webp,https://static.pierrefrey.com/uploads/product/packshots/3007e736-5be8-4cf3-b37d-28d2087b657e/tdMRXraRV9MJCo5XWBZX.webp,https://static.pierrefrey.com/uploads/product/packshots/78b54317-10f0-4879-bc33-1a740a5e67a9/bO5TUTjETgSwNapxMcTY.webp,https://static.pierrefrey.com/uploads/product/packshots/63e8d23b-4405-4ce1-92f4-02d91c23eef7/XmhoGKz570xwXRr8ZPRo.webp,https://static.pierrefrey.com/uploads/product/packshots/ed3255dd-096a-4b67-9dad-e462db9829d7/rexFSmr5bbOH9JJplW4L.webp,https://static.pierrefrey.com/uploads/product/packshots/d8194237-6573-4a98-b9be-42266eb3383c/SxbKeOt3JUzdyhhF1rel.webp,https://static.pierrefrey.com/uploads/product/packshots/9387966b-59d8-4276-8640-c9c61194d4c3/ExLZImu74JtHw0CaFze1.webp,https://static.pierrefrey.com/uploads/product/packshots/660944ba-8fc9-4e8d-8fe2-80ea7f2031e8/Fj7lnNPZFDvHYkWpCGWY.webp,https://static.pierrefrey.com/uploads/product/packshots/00a88d32-a7ce-4f71-b59d-a5444d5ff159/jghUgeQCDrncAlTP9Aeo.webp,https://static.pierrefrey.com/uploads/product/packshots/b4f7d5dc-f321-4c34-8920-c0453fd12457/e3oxoCmNNdwLouhfhCyp.webp,https://static.pierrefrey.com/uploads/product/packshots/9b6a7e42-dc85-4de6-b05d-cd1a70c3f79b/4ASSSRXpCqfbOvaqCxHL.webp,https://static.pierrefrey.com/uploads/product/packshots/712bf2f1-8d6f-4879-8e9c-ad9f68b858bf/7gA7aGsfFjsui01OsH11.webp,https://static.pierrefrey.com/uploads/product/packshots/9440df23-d363-465b-82df-5b85225a3445/SiJgLz8GNNF47FB8OK3u.webp,https://static.pierrefrey.com/uploads/product/packshots/a6aea8fc-73cd-44cc-ac72-1171fb96f0b4/CczfBp1r4qpQ0cQeqJWP.webp,https://static.pierrefrey.com/uploads/product/packshots/a3a863b6-39c7-4d8e-9a69-8d941ad0f199/36iA2hoIVqjJMQk4kXXt.webp,https://static.pierrefrey.com/uploads/product/packshots/fa964af7-be10-4004-a2cd-773d84a3a2e6/40Tnf6SOKTJobJPXx65x.webp,https://static.pierrefrey.com/uploads/product/packshots/13a431c0-79ae-4d95-9755-1b1d0671251d/I3zk17XMTkkDXoWjLLpT.webp,https://static.pierrefrey.com/uploads/product/packshots/495cfa46-b12d-469a-a378-fc460f51dbba/UuJeD8XeRFwuoWfmjRlB.webp,https://static.pierrefrey.com/uploads/product/packshots/cb4c8114-397d-42d4-9aaf-997239b26804/ydBJ1h3pXWCOL4WzLuTW.webp,https://static.pierrefrey.com/uploads/product/packshots/ec18ec0d-e92f-4746-bcb5-36c260ed70c4/pyC6POqiuaJJt1jRUfuS.webp,https://static.pierrefrey.com/uploads/product/packshots/80b2a5b6-5953-4237-ab60-512056adc44a/1kTDDtbK5MBSF8ICISnG.webp,https://static.pierrefrey.com/uploads/product/packshots/3d00ddb9-ece2-4306-ae61-9f2061c32855/dTDHSitC74foVDzfxw6O.webp,https://static.pierrefrey.com/uploads/product/packshots/be86ec58-6d72-4d7c-a941-65ca863c172e/flQwRCMUOWUEEQCeArJt.webp,https://static.pierrefrey.com/uploads/product/packshots/f1268dc1-e2d0-4971-9cbc-79f17697a449/7wKLSKX4iN955KKno0SR.webp,https://static.pierrefrey.com/uploads/product/packshots/01615dcd-96a5-4577-8545-0578132c1397/hzH5eLN0cbM7QgeGxmtj.webp,https://static.pierrefrey.com/uploads/product/packshots/666a96b2-1a22-4880-bac0-7a4dbcb58045/vKWuuFD5DDhwVgz7AIYf.webp,https://static.pierrefrey.com/uploads/product/packshots/78a6d521-9422-49ac-9ee6-75f73a504d77/XjiVfMz39LH3HQKhEZJ2.webp,https://static.pierrefrey.com/uploads/product/packshots/e5a90786-83bf-46d2-92a4-b712aec8e08f/svnPSuCaiVahajjSczWI.webp,https://static.pierrefrey.com/uploads/product/packshots/32abe478-ee00-4f62-bba9-0c541096d0d5/s9AjytoqaumWscEyTRwu.webp,https://static.pierrefrey.com/uploads/product/packshots/1fd2ef79-692a-473d-82f9-d798952b73ab/F0nOQphonvQmstybjXrd.webp,https://static.pierrefrey.com/uploads/product/packshots/8b6bf364-b5ec-44a6-ba5b-90477a2deb49/s1QiFRgQneFiZRKdzrY5.webp,https://static.pierrefrey.com/uploads/product/packshots/59169510-47bc-4fda-9f9e-3c2756fae117/dTVTJF3yQZEf7WKjD2yF.webp,https://static.pierrefrey.com/uploads/product/packshots/3748a06b-cc39-4149-921e-8477986c89a6/r4fOcHTguxTcuejzfVAK.webp,https://static.pierrefrey.com/uploads/product/packshots/eddc2ab6-fe11-4562-bd74-dac124effa22/qXBt5wNRYDM4iky01IPw.webp,https://static.pierrefrey.com/uploads/product/packshots/a7e748bb-9d5a-4771-b23a-1d13fc44a81c/hLcbiKCsyY0UntzmqXoR.webp,https://static.pierrefrey.com/uploads/product/packshots/63793704-69fc-45ca-b139-2117225d68a8/YGXNsxjgtyUzMOzmCHHo.webp,https://static.pierrefrey.com/uploads/product/packshots/03e54373-317c-4331-b9f9-53b9a60960dd/u2CjpeyfUAPIkaHZzh9T.webp,https://static.pierrefrey.com/uploads/product/packshots/b6b19067-b379-477d-8de5-d966b3866e4b/JaC2LLNln7FC19ULZWVD.webp,https://static.pierrefrey.com/uploads/product/packshots/2a3d1bd2-a77e-4ec6-b58a-7b628dcd32fe/FOblj9Ty9DKWaN5CDbRC.webp,https://static.pierrefrey.com/uploads/product/packshots/e5af6d4d-ae5f-496c-a436-d2f86e7d3227/YlBFfmttrY0QLqiHYrOm.webp","room_setting_url":null,"product_type":"wallcovering","scraped_at":"2026-07-07T20:19:58.241Z"}
+{"mfr_sku":"BP344001","pattern_name":"Le paradis aux mille fleurs","color_name":"Multicolore","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/BP344001-le-paradis-aux-mille-fleurs","list_image":"https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp_335x251_webp.webp","specs":{"Type":"Small width printed wallpapers - Straws and similar materials - Panoramic wallpapers","Sales Unit":"Available per panel","Backing":"NON WOVEN","Composition":"100 % Straw","Width":"75 cm / 29,52 inch","Repeat":"H: 150 cm - 59,00 inch | V: 350 cm - 137,79 inch | Straight repeat","Weight":"214 gr / m²","Trimming":"Trimmed","Hanging/Removing":"Paste the wall | Strippable","Certifications":"EUROCLASS B-s1,d0","Notes":"Sold as a complete artwork","Information":"Inherent irregularities from the natural fiber | 1 roll = 2 panels"},"width":"75 cm / 29,52 inch","composition":"100 % Straw","material":"NON WOVEN","pattern_repeat":"H: 150 cm - 59,00 inch | V: 350 cm - 137,79 inch | Straight repeat","weight":"214 gr / m²","certifications":"EUROCLASS B-s1,d0","sales_unit":"Available per panel","roll_length":null,"collection":"Le paradis aux mille fleurs","description":"Small width printed wallpapers - Straws and similar materials - Panoramic wallpapers, Le paradis aux mille fleurs. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp","https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp","https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp","https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp","https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp","https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp","https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp","https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp","https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp","https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp","https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp","https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp","https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp","https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp","https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp","https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp","https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp","https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp","https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp","https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp","https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp","https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp","https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp","https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp","https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp","https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp","https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp","https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp","https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp","https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp","https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp","https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp","https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp","https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp","https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp","https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp","https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp","https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp","https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp","https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp","https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp","https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp","https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp","https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp","https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp","https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp","https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp","https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/1c1039ab-c960-49bf-9e8a-7d7e69b958be/0PvZ84fNoHXiOTltN30W.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/1c1039ab-c960-49bf-9e8a-7d7e69b958be/rZggVnLAkkESb1UCFlrp.webp,https://static.pierrefrey.com/uploads/product/packshots/a86d0578-3ed7-4ebd-b9c4-e418f9dd9570/BbXMsJBrix74mcLC1WQS.webp,https://static.pierrefrey.com/uploads/product/packshots/dc682de3-75de-452c-b592-3a541711331b/ndw7Tx5RWLz72l127Gbi.webp,https://static.pierrefrey.com/uploads/product/packshots/718e116d-b9cb-4148-a701-10d2f37f300d/ZqUOE1xZs3Ej5UJFV8Bn.webp,https://static.pierrefrey.com/uploads/product/packshots/41965824-3ae3-4834-9578-a7ee4114ab7e/92dAdvm0WRvYunSnO1sf.webp,https://static.pierrefrey.com/uploads/product/packshots/c88d2a62-e746-4ae7-8423-bcc8b34d7518/mmeXGBgJz0pY44ODRzW6.webp,https://static.pierrefrey.com/uploads/product/packshots/32a5d2e8-a348-4adb-980a-51dd4fed360c/jRKcq16RGHEMTVomD8cw.webp,https://static.pierrefrey.com/uploads/product/packshots/99f75e30-2532-4765-83db-36bc84c2ace8/d1KJtyAMtfqq7FXVpxz5.webp,https://static.pierrefrey.com/uploads/product/packshots/e09370ce-783b-40c3-9d55-e813bf0d165d/FjPcqhbgKM79GMhMsklE.webp,https://static.pierrefrey.com/uploads/product/packshots/0472ae7e-eaca-4e95-8e8e-843f5d1d534b/FuLCLXdESuiuCH1V5zrl.webp,https://static.pierrefrey.com/uploads/product/packshots/53bab499-a069-4dd3-86e4-90af4ab44cf2/rOiLOJDFXMFaahy9nHJk.webp,https://static.pierrefrey.com/uploads/product/packshots/ce505446-8f45-49bf-bb1b-92992da41c66/tOOccCAzXMbo3TglblyQ.webp,https://static.pierrefrey.com/uploads/product/packshots/38cd04fa-a0de-427e-87ff-69a665b5f9b5/C5dSWrWQAq5MYD1OUMuh.webp,https://static.pierrefrey.com/uploads/product/packshots/a5842ea1-8873-4370-a0ee-afb68e991ef6/i55kaSZJwuQtX5peNmiJ.webp,https://static.pierrefrey.com/uploads/product/packshots/fede1468-1723-4c20-9ef6-c06455890f1e/5pF6y9ItTNIMXsbH6zYN.webp,https://static.pierrefrey.com/uploads/product/packshots/84862132-5faf-48e6-bf4d-e60347d9ad3f/8smpyJAf92etNIooCOCP.webp,https://static.pierrefrey.com/uploads/product/packshots/8901e6f8-d305-403f-8452-e8a653931d5a/sXnWxYSV9tWaj1NcVZzN.webp,https://static.pierrefrey.com/uploads/product/packshots/9ff12a2e-aaa4-48ae-8db8-0d1db2504c35/TKck9ucikB2TnWEdW1bJ.webp,https://static.pierrefrey.com/uploads/product/packshots/98ecd863-cc19-46ff-8508-cf46591a317f/S0CJZDHxo6wVDctB08x1.webp,https://static.pierrefrey.com/uploads/product/packshots/1e202c28-3831-491b-9988-4fa1cfb140cd/Q4Y0LfKYXQlyx8HJj2Dp.webp,https://static.pierrefrey.com/uploads/product/packshots/a969c223-6090-49c1-bdeb-b25b78565c84/uInrR47kruD4qBtDCZe4.webp,https://static.pierrefrey.com/uploads/product/packshots/cd01381a-e89f-44c7-8256-5c5b317f5eec/hPrAjqPniNIYPejbw1Zf.webp,https://static.pierrefrey.com/uploads/product/packshots/22460fba-5980-4457-adaa-83ee61321150/rihaCMzWNqmfRZ4ll9NK.webp,https://static.pierrefrey.com/uploads/product/packshots/7daeece5-bb49-4040-a5ad-8374b732a30b/nPcZz0ysngRIhYOtFtMI.webp,https://static.pierrefrey.com/uploads/product/packshots/513af9b3-b50e-462b-9a84-5545ad849f17/CRvdHiaeLYU068c9wOex.webp,https://static.pierrefrey.com/uploads/product/packshots/0249613a-8203-44eb-a581-2d6473953c64/koBqz6OVHiLgcdJMUF1m.webp,https://static.pierrefrey.com/uploads/product/packshots/85828bf7-a2fa-4580-91ae-81b241156ab3/RcDaTP4dPobkY56SJOOQ.webp,https://static.pierrefrey.com/uploads/product/packshots/081eaada-c5e2-4900-99a5-375d389ea75b/94JwxBHlwyWWf62feDZ3.webp,https://static.pierrefrey.com/uploads/product/packshots/1cfc70db-6abe-4e0c-ab80-5439e5628897/mIb3d5a3GSyaRJezjOGW.webp,https://static.pierrefrey.com/uploads/product/packshots/e46c6330-c592-4fef-847e-494b5dae34ec/lmifCbrUdbLmVk425zSX.webp,https://static.pierrefrey.com/uploads/product/packshots/1d713217-ddfb-43a6-9951-e6eea6505bb8/IlZlopVjMLJMpLBW5HnG.webp,https://static.pierrefrey.com/uploads/product/packshots/4f3cca5e-718a-452c-90d6-7e2cad2c3932/7HDT88JDzKIjAhFunhyj.webp,https://static.pierrefrey.com/uploads/product/packshots/c455c01b-1ac0-446e-a63a-200e62e8fd2b/QakS6GWYFLRZ5RLDZ2Ro.webp,https://static.pierrefrey.com/uploads/product/packshots/a2408e1d-1a6d-44f1-992d-94cf6a819655/30RzI9gtCCkvRmLixRDI.webp,https://static.pierrefrey.com/uploads/product/packshots/a57e4d46-0040-48c1-82cf-2dd49059a8d1/AyPJCeiv79KxzZ6fy0f5.webp,https://static.pierrefrey.com/uploads/product/packshots/ca966ef9-eaa3-4089-a072-42ce603572ae/DJZXwOGxM2dtUZHjmT9y.webp,https://static.pierrefrey.com/uploads/product/packshots/19ea4b8b-1d64-4e5a-bb97-6dfaf41f5a83/PGZrDPpwdEKJGXoc8v21.webp,https://static.pierrefrey.com/uploads/product/packshots/3f56aa05-877f-479a-a384-829f43c1b520/k3RmpdxUPgeP3oACK5Ts.webp,https://static.pierrefrey.com/uploads/product/packshots/e76ebf1b-5994-4c60-ba01-8feaefe75e04/mOzQLU1tEEVW8tWr5dTW.webp,https://static.pierrefrey.com/uploads/product/packshots/cefd9cb4-b025-40f7-b864-6005549a1fb0/APtKN5KJyWA7CA3nGU3m.webp,https://static.pierrefrey.com/uploads/product/packshots/a4943924-bb5f-4e97-98c8-155463429458/x9WQJbM8fM4S6wLvKiFE.webp,https://static.pierrefrey.com/uploads/product/packshots/34ba9289-5859-44ab-abec-5f1f0514ccb9/7bEJpU7eLT5QD62RYI5z.webp,https://static.pierrefrey.com/uploads/product/packshots/3d7419e9-6022-4c8c-8504-756c126003c9/ErNvJfxToK5f5dSMwXeP.webp,https://static.pierrefrey.com/uploads/product/packshots/edb9db23-4518-4b57-9b0d-04e8db04c06c/F6NbX2WGEBD4un1bg3jl.webp,https://static.pierrefrey.com/uploads/product/packshots/63df917a-b50b-429b-8528-0f6b4fcbc0c8/leMDDxOzeOMe9I9XCNuY.webp,https://static.pierrefrey.com/uploads/product/packshots/3ece2242-1beb-4079-aa26-d087a4e5f9bd/GrwDoITSgVhfUAVAfF8t.webp,https://static.pierrefrey.com/uploads/product/packshots/5bb82b6b-3e6b-4e85-bdfd-3264c7c3f6c6/QdDvzSscazfDtc6kQbxz.webp,https://static.pierrefrey.com/uploads/product/packshots/20ea7c0c-17a2-4cfc-89e8-00fad2c10570/rIa29741UvI9Y5jyAkC9.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/1c1039ab-c960-49bf-9e8a-7d7e69b958be/0PvZ84fNoHXiOTltN30W.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/1c1039ab-c960-49bf-9e8a-7d7e69b958be/0PvZ84fNoHXiOTltN30W.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:19:59.149Z"}
+{"mfr_sku":"TP617001","pattern_name":"Carnation stripe","color_name":"Strawberry","category":"Wallpapers","product_url":"https://www.pierrefrey.com/en/wallpapers/TP617001-carnation-stripe","list_image":"https://static.pierrefrey.com/uploads/product/packshots/2c99f02f-775c-4ccd-af55-3e05ff6e8104/y1ZhPOjnSWHdvQB9w5Wm_335x251_webp.webp","specs":{"Type":"-","Technique":"-","Sales unit":"Available per meter/yard","Backing":"-","Ground Thorp of London":"TS030 - Susan Ivory","Composition":"100 % Non-woven","number of colors":"4","Colors":"A-MUSTARD 304 | B-STRAWBERRY 180 | C-DAWN 207 | D-BLUSH 316","Width":"151 cm / 59,44 inch","Design Width":"121 cm / 47,63 inch","Repeat":"H: 17 cm - 6,69 inch | V: 17 cm - 6,69 inch","Weight":"-","Care":"-","Trimming":"-","Hanging / Removing":"-"},"width":"151 cm / 59,44 inch","composition":"100 % Non-woven","material":"-","pattern_repeat":"H: 17 cm - 6,69 inch | V: 17 cm - 6,69 inch","weight":"-","certifications":null,"sales_unit":null,"roll_length":null,"collection":"Carnation stripe","description":", Carnation stripe. Check the product sheet and request a sample on the Pierre Frey website!","image_url":"https://static.pierrefrey.com/uploads/product/packshots/2c99f02f-775c-4ccd-af55-3e05ff6e8104/y1ZhPOjnSWHdvQB9w5Wm.webp","gallery_images":["https://static.pierrefrey.com/uploads/product/packshots/2c99f02f-775c-4ccd-af55-3e05ff6e8104/y1ZhPOjnSWHdvQB9w5Wm.webp","https://static.pierrefrey.com/uploads/product/data-sheet/image/2c99f02f-775c-4ccd-af55-3e05ff6e8104/wDpmcyHsT42csrNtrjaF.jpg"],"all_images":"https://static.pierrefrey.com/uploads/product/packshots/2c99f02f-775c-4ccd-af55-3e05ff6e8104/y1ZhPOjnSWHdvQB9w5Wm.webp,https://static.pierrefrey.com/uploads/product/data-sheet/image/2c99f02f-775c-4ccd-af55-3e05ff6e8104/wDpmcyHsT42csrNtrjaF.jpg","room_setting_url":"https://static.pierrefrey.com/uploads/product/data-sheet/image/2c99f02f-775c-4ccd-af55-3e05ff6e8104/wDpmcyHsT42csrNtrjaF.jpg","product_type":"wallcovering","scraped_at":"2026-07-07T20:19:59.711Z"}
diff --git a/DW-Programming/ImportNewSkufromURL/pierre-frey-shopify-draft.mjs b/DW-Programming/ImportNewSkufromURL/pierre-frey-shopify-draft.mjs
new file mode 100644
index 00000000..12674eb9
Binary files /dev/null and b/DW-Programming/ImportNewSkufromURL/pierre-frey-shopify-draft.mjs differ
diff --git a/DW-Programming/ImportNewSkufromURL/pierre-frey-upsert.mjs b/DW-Programming/ImportNewSkufromURL/pierre-frey-upsert.mjs
new file mode 100644
index 00000000..1d405dc4
--- /dev/null
+++ b/DW-Programming/ImportNewSkufromURL/pierre-frey-upsert.mjs
@@ -0,0 +1,130 @@
+#!/usr/bin/env node
+/**
+ * Upsert Pierre Frey scrape (+ staging jsonl) into dw_unified.pierre_frey_catalog.
+ * ON CONFLICT (mfr_sku): insert new, update changed. NEVER delete. PostgreSQL BEFORE Shopify.
+ *
+ * Sources merged (scrape wins on specs/images; staging fills ai_* if scrape lacks them):
+ *   1. pierre-frey-scrape.jsonl  (this session's full detail scrape)
+ *   2. dw-vendor-microsites/staging/pierre_frey.jsonl  (46 fuller records w/ ai_tags)
+ */
+import fs from 'fs';
+import path from 'path';
+import { fileURLToPath } from 'url';
+import dotenv from 'dotenv';
+import pg from 'pg';
+
+const __dirname = path.dirname(fileURLToPath(import.meta.url));
+dotenv.config({ path: path.join(__dirname, '.env') });
+const STAGING = '/Users/macstudio3/Projects/dw-vendor-microsites/staging/pierre_frey.jsonl';
+const CKPT = path.join(__dirname, 'pierre-frey-scrape.jsonl');
+
+function readJsonl(f) {
+  const out = [];
+  if (!fs.existsSync(f)) return out;
+  for (const line of fs.readFileSync(f, 'utf8').split('\n')) {
+    if (!line.trim()) continue;
+    try { out.push(JSON.parse(line)); } catch {}
+  }
+  return out;
+}
+
+const clip = (s, n) => (s == null ? null : String(s).slice(0, n));
+// A color that is just the SKU (breadcrumb fallback) is not a real color → null it.
+function sanitizeColor(color, sku) {
+  if (!color) return null;
+  const norm = (x) => String(x).toUpperCase().replace(/[^A-Z0-9]/g, '');
+  if (norm(color) === norm(sku)) return null;
+  return color;
+}
+
+async function main() {
+  const scrape = readJsonl(CKPT);
+  const staging = readJsonl(STAGING);
+  console.log(`[upsert] scrape=${scrape.length} staging=${staging.length}`);
+
+  // Merge by mfr_sku. scrape is source-of-truth for specs/images; staging supplies ai_* + fills gaps.
+  const merged = new Map();
+  for (const r of scrape) if (r.mfr_sku) merged.set(r.mfr_sku, { ...r });
+  for (const s of staging) {
+    if (!s.mfr_sku) continue;
+    const cur = merged.get(s.mfr_sku) || {};
+    merged.set(s.mfr_sku, {
+      ...s,           // staging base (has ai_*, specs)
+      ...cur,         // scrape overrides specs/images/color where present
+      // preserve staging ai_* (scrape has none)
+      ai_description: cur.ai_description ?? s.ai_description ?? null,
+      ai_colors: cur.ai_colors ?? s.ai_colors ?? null,
+      ai_background_color: cur.ai_background_color ?? s.ai_background_color ?? null,
+      ai_styles: cur.ai_styles ?? s.ai_styles ?? null,
+      ai_patterns: cur.ai_patterns ?? s.ai_patterns ?? null,
+      ai_tags: cur.ai_tags ?? s.ai_tags ?? null,
+      // prefer scrape image, else staging
+      image_url: cur.image_url ?? s.image_url ?? null,
+      specs: (cur.specs && Object.keys(cur.specs).length) ? cur.specs : (s.specs || {}),
+    });
+  }
+  const rows = [...merged.values()];
+  console.log(`[upsert] merged unique SKUs=${rows.length}`);
+
+  const { Pool } = pg;
+  const pool = new Pool({ connectionString: process.env.DATABASE_URL });
+  let ins = 0, upd = 0, err = 0;
+
+  for (const r of rows) {
+    const jb = (v) => (v == null ? null : JSON.stringify(v));
+    const gallery = Array.isArray(r.gallery_images) ? r.gallery_images : null;
+    try {
+      const res = await pool.query(
+        `INSERT INTO pierre_frey_catalog
+          (mfr_sku, pattern_name, color_name, collection, width, roll_length, pattern_repeat,
+           image_url, product_url, product_type, material, composition, specs,
+           ai_description, ai_colors, ai_background_color, ai_styles, ai_patterns, ai_tags,
+           gallery_images, all_images, room_setting_url, description, last_scraped, updated_at)
+         VALUES ($1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13,$14,$15,$16,$17,$18,$19,$20,$21,$22,$23,now(),now())
+         ON CONFLICT (mfr_sku) DO UPDATE SET
+           pattern_name=COALESCE(EXCLUDED.pattern_name, pierre_frey_catalog.pattern_name),
+           color_name=COALESCE(EXCLUDED.color_name, pierre_frey_catalog.color_name),
+           collection=COALESCE(EXCLUDED.collection, pierre_frey_catalog.collection),
+           width=COALESCE(EXCLUDED.width, pierre_frey_catalog.width),
+           roll_length=COALESCE(EXCLUDED.roll_length, pierre_frey_catalog.roll_length),
+           pattern_repeat=COALESCE(EXCLUDED.pattern_repeat, pierre_frey_catalog.pattern_repeat),
+           image_url=COALESCE(EXCLUDED.image_url, pierre_frey_catalog.image_url),
+           product_url=COALESCE(EXCLUDED.product_url, pierre_frey_catalog.product_url),
+           material=COALESCE(EXCLUDED.material, pierre_frey_catalog.material),
+           composition=COALESCE(EXCLUDED.composition, pierre_frey_catalog.composition),
+           specs=CASE WHEN EXCLUDED.specs IS NOT NULL AND EXCLUDED.specs <> '{}'::jsonb THEN EXCLUDED.specs ELSE pierre_frey_catalog.specs END,
+           ai_description=COALESCE(pierre_frey_catalog.ai_description, EXCLUDED.ai_description),
+           ai_colors=COALESCE(pierre_frey_catalog.ai_colors, EXCLUDED.ai_colors),
+           ai_background_color=COALESCE(pierre_frey_catalog.ai_background_color, EXCLUDED.ai_background_color),
+           ai_styles=COALESCE(pierre_frey_catalog.ai_styles, EXCLUDED.ai_styles),
+           ai_patterns=COALESCE(pierre_frey_catalog.ai_patterns, EXCLUDED.ai_patterns),
+           ai_tags=COALESCE(pierre_frey_catalog.ai_tags, EXCLUDED.ai_tags),
+           gallery_images=COALESCE(EXCLUDED.gallery_images, pierre_frey_catalog.gallery_images),
+           all_images=COALESCE(EXCLUDED.all_images, pierre_frey_catalog.all_images),
+           room_setting_url=COALESCE(EXCLUDED.room_setting_url, pierre_frey_catalog.room_setting_url),
+           description=COALESCE(EXCLUDED.description, pierre_frey_catalog.description),
+           last_scraped=now(), updated_at=now()
+         RETURNING (xmax = 0) AS inserted`,
+        [
+          clip(r.mfr_sku, 100), clip(r.pattern_name, 255), clip(sanitizeColor(r.color_name, r.mfr_sku), 255), clip(r.collection, 255),
+          clip(r.width, 150), clip(r.roll_length, 150), clip(r.pattern_repeat, 200),
+          r.image_url || null, r.product_url || null, r.product_type || 'wallcovering',
+          clip(r.material, 255), clip(r.composition, 255), jb(r.specs || {}),
+          r.ai_description || null, jb(r.ai_colors), clip(r.ai_background_color, 100),
+          jb(r.ai_styles), jb(r.ai_patterns), jb(r.ai_tags),
+          gallery, r.all_images || (gallery ? gallery.join(',') : ''), r.room_setting_url || null,
+          r.description || r.ai_description || null,
+        ]
+      );
+      if (res.rows[0].inserted) ins++; else upd++;
+    } catch (e) {
+      err++;
+      if (err <= 10) console.error(`[upsert] ${r.mfr_sku} ERR ${e.message}`);
+    }
+  }
+  const total = await pool.query('SELECT count(*) FROM pierre_frey_catalog');
+  console.log(`[upsert] inserted=${ins} updated=${upd} errors=${err}`);
+  console.log(`[upsert] pierre_frey_catalog total rows = ${total.rows[0].count}`);
+  await pool.end();
+}
+main().catch((e) => { console.error('FATAL', e); process.exit(1); });
diff --git a/backups/deleted-collections-20260707.json b/backups/deleted-collections-20260707.json
new file mode 100644
index 00000000..8db727dd
--- /dev/null
+++ b/backups/deleted-collections-20260707.json
@@ -0,0 +1,1085 @@
+{
+  "deleted": [
+    {
+      "id": "gid://shopify/Collection/298507468851",
+      "title": "Mind the Gap",
+      "handle": "mind-the-gap-1",
+      "descriptionHtml": "<p>Mind The Gap wallcoverings offer a maximalist aesthetic rooted in Transylvanian heritage, printed on durable non-woven substrates. Their extensive book provides diverse patterns, from large-scale murals to intricate geometrics, ensuring a sophisticated hand. Specified by designers for bold residential and commercial projects, Mind The Gap delivers high-impact wallcovering solutions with precise pattern matches.</p>",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": true,
+        "rules": [
+          {
+            "column": "TITLE",
+            "relation": "CONTAINS",
+            "condition": "Mind the Gap"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Mind the Gap"
+          },
+          {
+            "column": "VENDOR",
+            "relation": "EQUALS",
+            "condition": "Mind the Gap"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/160309084211",
+      "title": "Osborne & Little",
+      "handle": "osborne-little-wallpapers",
+      "descriptionHtml": "<p>Osborne &amp; Little Wallcoverings</p>",
+      "sortOrder": "CREATED_DESC",
+      "templateSuffix": "",
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "VENDOR",
+            "relation": "EQUALS",
+            "condition": "Osborne & Little"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/262941704243",
+      "title": "Carlisle & Co.",
+      "handle": "carlisle-and-company-wallcoverings",
+      "descriptionHtml": "<p>Introducing the <em>Carlisle and Company Wallcoverings Collection</em>, where timeless design meets modern sophistication. Featuring elegant patterns, soft textures, and a versatile palette, this collection seamlessly blends classic charm with contemporary style. Perfect for both traditional and modern interiors, these wallcoverings bring a polished, refined look to any space.</p>\n<p>Transform your home with walls that exude understated elegance and enduring beauty.</p>",
+      "sortOrder": "ALPHA_ASC",
+      "templateSuffix": "",
+      "ruleSet": {
+        "appliedDisjunctively": true,
+        "rules": [
+          {
+            "column": "VENDOR",
+            "relation": "EQUALS",
+            "condition": "Carlisle & Co. Walls"
+          },
+          {
+            "column": "TITLE",
+            "relation": "CONTAINS",
+            "condition": "Carlisle & Co"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/298974347315",
+      "title": "Elli Popp",
+      "handle": "elli-popp-1",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "VENDOR",
+            "relation": "EQUALS",
+            "condition": "Elli Popp"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/298970972211",
+      "title": "Apartment Wallcovering",
+      "handle": "apartment-wallpaper",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "VENDOR",
+            "relation": "EQUALS",
+            "condition": "Apartment Wallpaper"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/299534188595",
+      "title": "Natural Paint",
+      "handle": "natural-paint-1",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Natural Paint"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/298971299891",
+      "title": "Hygge & West Wallcoverings",
+      "handle": "hygge-west-wallcoverings",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "VENDOR",
+            "relation": "EQUALS",
+            "condition": "Hygge & West"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/299575672883",
+      "title": "Sanderson Wallcoverings",
+      "handle": "sanderson-wallcoverings",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "VENDOR",
+            "relation": "EQUALS",
+            "condition": "Sanderson"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/299591008307",
+      "title": "Toile Wallcoverings",
+      "handle": "toile-wallcoverings",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Toile"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/299591041075",
+      "title": "Paisley Collection",
+      "handle": "paisley-wallcoverings",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Paisley"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/299577311283",
+      "title": "Steve Abrams Studios",
+      "handle": "steve-abrams-studios-1",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Steve Abrams Studios"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/299576098867",
+      "title": "Stripe Collection",
+      "handle": "stripe",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Stripe"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/299575869491",
+      "title": "Tropical Collection",
+      "handle": "tropical",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Tropical"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/299590975539",
+      "title": "Tropical Collection",
+      "handle": "tropical-wallcoverings",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Tropical"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/299533795379",
+      "title": "Traditional Whimsy",
+      "handle": "traditional-whimsy",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Traditional Whimsy"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/299059380275",
+      "title": "Red Collection",
+      "handle": "red-wallcovering-collection",
+      "descriptionHtml": "<p>Red Wallcovering Collection</p>",
+      "sortOrder": "MANUAL",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Red"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/271193669683",
+      "title": "Blue Collections",
+      "handle": "blue-wallpaper",
+      "descriptionHtml": "<p>Blue wallcoverings \u2014 from serene powder to deep, inky tones. Designer Wallcoverings curates blue wallpaper and wallcoverings from the world's premier design houses: grasscloths, silks, flocks, metallics, and printed papers across every shade of blue. Order memo samples online; available to the trade and retail.</p>",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": "",
+      "ruleSet": {
+        "appliedDisjunctively": true,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Blue"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Wallpaper"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/283307835443",
+      "title": "Grey Collections",
+      "handle": "grey-silver",
+      "descriptionHtml": "<p class=\"p1\">Using grey in home interiors offers a sophisticated and timeless appeal. As a neutral color, grey provides a versatile backdrop that complements a wide range of color schemes and styles, from modern to traditional. It can create a calming and elegant atmosphere, promoting relaxation and balance. Additionally, grey works well in layering, allowing for the incorporation of various textures and materials, enhancing depth and interest in a space. Its ability to reflect light can also help brighten rooms while maintaining a chic and contemporary aesthetic.</p>",
+      "sortOrder": "ALPHA_ASC",
+      "templateSuffix": "",
+      "ruleSet": {
+        "appliedDisjunctively": true,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Grey"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Gray"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Grays"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Grey/Silver"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Grey/White"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Argos Grey"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "dark grey"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Deep Taupe Grey"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "DOVE GREY"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Harbor Grey"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Light Grey"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "PEARL GREY"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Soft Grey"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/260655906867",
+      "title": "Ultrasuede\u2122",
+      "handle": "ultrasuede",
+      "descriptionHtml": "<meta charset=\"utf-8\">\n<p data-mce-fragment=\"1\">The most well recognized name in faux suede. Ultrasuede\u00ae features a soft touch and luxurious texture, combined with superior durability. Easy to clean and to care for, it is an ideal cover for upholstered furnishings, such as sofas, ottomans, dining and lounge chairs. Other benefits include colorfastness, making it an ideal selection for sunny rooms; and its ability to retain a comfortable surface temperature. Ultrasuede\u00ae is the ideal leather alternative, and is available in a wide range of colors to suit any interior space.</p>\n<p data-mce-fragment=\"1\">\u00a0<br data-mce-fragment=\"1\"></p>\n<p data-mce-fragment=\"1\">\u00a0<br data-mce-fragment=\"1\"></p>",
+      "sortOrder": "ALPHA_ASC",
+      "templateSuffix": "",
+      "ruleSet": null
+    },
+    {
+      "id": "gid://shopify/Collection/261325914163",
+      "title": "Mid Century Modern",
+      "handle": "mid-century-modern-1",
+      "descriptionHtml": "<b data-mce-fragment=\"1\">Mid-century modern</b><span data-mce-fragment=\"1\">\u00a0(</span><b data-mce-fragment=\"1\">MCM</b><span data-mce-fragment=\"1\">) is an American design movement in interior, product, graphic design, architecture, and urban development that was popular from roughly 1945 to 1969,</span><sup id=\"cite_ref-2\" class=\"reference\" data-mce-fragment=\"1\">]</sup><span data-mce-fragment=\"1\">\u00a0during the\u00a0</span>United States<span data-mce-fragment=\"1\">'s post\u2013</span>World War II<span data-mce-fragment=\"1\">\u00a0period. The term was used descriptively as early as the mid-1950s and was defined as a design movement by Cara Greenberg in her 1984 book\u00a0</span><i data-mce-fragment=\"1\">Mid-Century Modern: Furniture of the 1950s</i><span data-mce-fragment=\"1\">. It is now recognized by scholars and museums worldwide as a significant design movement. The MCM design aesthetic is modern in style and construction, aligned with the\u00a0</span>Modernism<span data-mce-fragment=\"1\">\u00a0movement of the period. It is typically characterized by clean, simple lines and honest use of materials, and it generally does not include decorative embellishments.</span>",
+      "sortOrder": "ALPHA_ASC",
+      "templateSuffix": "",
+      "ruleSet": {
+        "appliedDisjunctively": true,
+        "rules": [
+          {
+            "column": "VENDOR",
+            "relation": "EQUALS",
+            "condition": "Mid Century Modern"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "MCM"
+          },
+          {
+            "column": "TITLE",
+            "relation": "CONTAINS",
+            "condition": "Mid century modern"
+          },
+          {
+            "column": "TITLE",
+            "relation": "CONTAINS",
+            "condition": "Midcentury modern"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "midcentury modern"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/272284418099",
+      "title": "Kelly Wearstler Collections",
+      "handle": "kelly-wearstler-collections",
+      "descriptionHtml": "<p class=\"p1\">Kelly Wearstler\u2019s collaboration with Kravet showcases her distinctive, bold design aesthetic through a curated collection of luxurious textiles, trims, and wallcoverings. Known for her fearless use of color, texture, and pattern, Wearstler\u2019s designs for Kravet bring a modern, artistic edge to interiors, blending graphic prints with sumptuous materials. This partnership highlights her innovative approach to design, offering high-end products that combine craftsmanship with a unique, contemporary style</p>\n<p style=\"text-align: center;\">\u00a0<img src=\"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2023-09-12at10.56.18AM_480x480.png?v=1694541408\" alt=\"\" data-mce-fragment=\"1\" data-mce-src=\"https://cdn.shopify.com/s/files/1/0015/4117/7456/files/Screenshot2023-09-12at10.56.18AM_480x480.png?v=1694541408\"></p>",
+      "sortOrder": "CREATED_DESC",
+      "templateSuffix": "",
+      "ruleSet": {
+        "appliedDisjunctively": true,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER COLLECTION"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER II"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER III"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER IV"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER TERRA FIRMA TEXTILES"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER LEATHER COLLECTION"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER TEXTURES"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER TRIM IV"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER WALLPAPERS V"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER WALLPAPERS V"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER WALLPAPERS IV"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER WALLPAPERS III"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER WALLPAPERS II"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER VI"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "KELLY WEARSTLER V"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/298989682739",
+      "title": "Fentucci",
+      "handle": "fentucci",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Fentucci"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/299059216435",
+      "title": "Yellow Collection",
+      "handle": "yellow-wallcovering-collection",
+      "descriptionHtml": "",
+      "sortOrder": "MANUAL",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Yellow"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/299059249203",
+      "title": "Orange Collection",
+      "handle": "orange-wallcovering-collection",
+      "descriptionHtml": "",
+      "sortOrder": "MANUAL",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Orange"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/283337850931",
+      "title": "White Collection",
+      "handle": "white-wallpaper-collection",
+      "descriptionHtml": "<p data-start=\"125\" data-end=\"628\">Transform your space with the timeless elegance of white wallcovering. Whether you're seeking modern minimalism, classic damask, textural metallics, or playful patterns, our curated collection of white wallcoverings offers clean, versatile options for any room. Perfect for creating light-filled, serene, and sophisticated interiors. Explore best-selling designs like flocked damasks, shimmering glass beads, and couture-inspired prints \u2014 all in beautiful shades of white.</p>",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": "",
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "White"
+          },
+          {
+            "column": "TITLE",
+            "relation": "CONTAINS",
+            "condition": "White"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/298270687283",
+      "title": "Phillip Jeffries",
+      "handle": "phillip-jeffries-wallcoverings",
+      "descriptionHtml": "<p>Phillip Jeffries, a name synonymous with natural textures and meticulous craftsmanship, offers a breadth of wallcoverings suitable for specification-grade installations. Known for their exquisite grasscloths and innovative use of natural materials on a Type II substrate, their expansive colorway selection and diverse grounds ensure a sophisticated solution for any design intent. Available by the bolt, many patterns can be railroaded, and with attention paid to repeat and half-drop matching beyond the selvage, Phillip Jeffries delivers unparalleled quality from mill to install.</p>",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": true,
+        "rules": [
+          {
+            "column": "TITLE",
+            "relation": "CONTAINS",
+            "condition": "Phillip Jeffries"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Phillip Jeffries"
+          },
+          {
+            "column": "VENDOR",
+            "relation": "EQUALS",
+            "condition": "Phillip Jeffries"
+          },
+          {
+            "column": "VENDOR",
+            "relation": "EQUALS",
+            "condition": "Phillip Jeffries Wallpaper"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/299575967795",
+      "title": "Abstract Collection",
+      "handle": "abstract",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "Abstract"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/298885709875",
+      "title": "Moody & Dark",
+      "handle": "moody-dark",
+      "descriptionHtml": "<p>Near-black grounds and saturated midnight tones that create enveloping, cocoon-like interiors. Dark wallcoverings reduce perceived room volume and shift focus to lighting, art, and furnishing silhouettes. Most effective in compact spaces \u2014 powder rooms, dressing areas, intimate dining \u2014 where drama outperforms airiness.</p>",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": true,
+        "rules": [
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "dark"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "moody"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "dramatic"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "noir"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "midnight"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "deep"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "inky"
+          },
+          {
+            "column": "TAG",
+            "relation": "EQUALS",
+            "condition": "dark floral"
+          }
+        ]
+      }
+    },
+    {
+      "id": "gid://shopify/Collection/298971070515",
+      "title": "Luxury Murals",
+      "handle": "luxury-murals",
+      "descriptionHtml": "",
+      "sortOrder": "BEST_SELLING",
+      "templateSuffix": null,
+      "ruleSet": {
+        "appliedDisjunctively": false,
+        "rules": [
+          {
+            "column": "VENDOR",
+            "relation": "EQUALS",
+            "condition": "Luxury Murals"
+          }
+        ]
+      }
+    }
+  ],
+  "plan": {
+    "plan": [
+      [
+        "Mind the Gap\u2122",
+        "gid://shopify/Collection/159993659443",
+        "mind-the-gap",
+        [
+          [
+            "gid://shopify/Collection/298507468851",
+            "mind-the-gap-1"
+          ]
+        ]
+      ],
+      [
+        "Osborne & Little",
+        "gid://shopify/Collection/298974314547",
+        "osborne-little",
+        [
+          [
+            "gid://shopify/Collection/160309084211",
+            "osborne-little-wallpapers"
+          ]
+        ]
+      ],
+      [
+        "Carlisle & Co.",
+        "gid://shopify/Collection/298506321971",
+        "carlisle-co",
+        [
+          [
+            "gid://shopify/Collection/262941704243",
+            "carlisle-and-company-wallcoverings"
+          ]
+        ]
+      ],
+      [
+        "Elli Popp",
+        "gid://shopify/Collection/298884530227",
+        "elli-popp",
+        [
+          [
+            "gid://shopify/Collection/298974347315",
+            "elli-popp-1"
+          ]
+        ]
+      ],
+      [
+        "Apartment Wallcovering",
+        "gid://shopify/Collection/299533828147",
+        "apartment-wallpaper-1",
+        [
+          [
+            "gid://shopify/Collection/298970972211",
+            "apartment-wallpaper"
+          ]
+        ]
+      ],
+      [
+        "Natural Paint",
+        "gid://shopify/Collection/298971234355",
+        "natural-paint",
+        [
+          [
+            "gid://shopify/Collection/299534188595",
+            "natural-paint-1"
+          ]
+        ]
+      ],
+      [
+        "Hygge & West Wallcoverings",
+        "gid://shopify/Collection/299574788147",
+        "hygge-and-west",
+        [
+          [
+            "gid://shopify/Collection/298971299891",
+            "hygge-west-wallcoverings"
+          ]
+        ]
+      ],
+      [
+        "Sanderson Wallcoverings",
+        "gid://shopify/Collection/299574591539",
+        "sanderson",
+        [
+          [
+            "gid://shopify/Collection/299575672883",
+            "sanderson-wallcoverings"
+          ]
+        ]
+      ],
+      [
+        "Toile Wallcoverings",
+        "gid://shopify/Collection/299576000563",
+        "toile",
+        [
+          [
+            "gid://shopify/Collection/299591008307",
+            "toile-wallcoverings"
+          ]
+        ]
+      ],
+      [
+        "Paisley Collection",
+        "gid://shopify/Collection/299576164403",
+        "paisley",
+        [
+          [
+            "gid://shopify/Collection/299591041075",
+            "paisley-wallcoverings"
+          ]
+        ]
+      ],
+      [
+        "Steve Abrams Studios",
+        "gid://shopify/Collection/299577278515",
+        "steve-abrams-studios",
+        [
+          [
+            "gid://shopify/Collection/299577311283",
+            "steve-abrams-studios-1"
+          ]
+        ]
+      ],
+      [
+        "Stripe Collections",
+        "gid://shopify/Collection/79979282544",
+        "stripe-collection-1",
+        [
+          [
+            "gid://shopify/Collection/299576098867",
+            "stripe"
+          ]
+        ]
+      ],
+      [
+        "Tropical Collections",
+        "gid://shopify/Collection/93446176833",
+        "tropical-prints",
+        [
+          [
+            "gid://shopify/Collection/299575869491",
+            "tropical"
+          ],
+          [
+            "gid://shopify/Collection/299590975539",
+            "tropical-wallcoverings"
+          ]
+        ]
+      ],
+      [
+        "Traditional Whimsy",
+        "gid://shopify/Collection/94202986561",
+        "traditional-wimsy",
+        [
+          [
+            "gid://shopify/Collection/299533795379",
+            "traditional-whimsy"
+          ]
+        ]
+      ],
+      [
+        "Red Collection",
+        "gid://shopify/Collection/95277940801",
+        "red-wallpaper-collection",
+        [
+          [
+            "gid://shopify/Collection/299059380275",
+            "red-wallcovering-collection"
+          ]
+        ]
+      ],
+      [
+        "Blue Collection",
+        "gid://shopify/Collection/95278104641",
+        "blue-wallpaper-collection",
+        [
+          [
+            "gid://shopify/Collection/271193669683",
+            "blue-wallpaper"
+          ]
+        ]
+      ],
+      [
+        "Grey Collection",
+        "gid://shopify/Collection/164059938867",
+        "grey-wallcovering",
+        [
+          [
+            "gid://shopify/Collection/283307835443",
+            "grey-silver"
+          ]
+        ]
+      ],
+      [
+        "Ultrasuede\u2122",
+        "gid://shopify/Collection/298507665459",
+        "ultrasuede-1",
+        [
+          [
+            "gid://shopify/Collection/260655906867",
+            "ultrasuede"
+          ]
+        ]
+      ],
+      [
+        "Mid Century Modern",
+        "gid://shopify/Collection/299533762611",
+        "mid-century-modern",
+        [
+          [
+            "gid://shopify/Collection/261325914163",
+            "mid-century-modern-1"
+          ]
+        ]
+      ],
+      [
+        "Kelly Wearstler Collections",
+        "gid://shopify/Collection/283697643571",
+        "kelly-wearstler-wallpapers-1",
+        [
+          [
+            "gid://shopify/Collection/272284418099",
+            "kelly-wearstler-collections"
+          ]
+        ]
+      ],
+      [
+        "Fentucci",
+        "gid://shopify/Collection/274447368243",
+        "fentucci\u2122",
+        [
+          [
+            "gid://shopify/Collection/298989682739",
+            "fentucci"
+          ]
+        ]
+      ],
+      [
+        "Yellow Collection",
+        "gid://shopify/Collection/283180367923",
+        "yellow-wallpaper-collection",
+        [
+          [
+            "gid://shopify/Collection/299059216435",
+            "yellow-wallcovering-collection"
+          ]
+        ]
+      ],
+      [
+        "Orange Collections",
+        "gid://shopify/Collection/283307999283",
+        "orange",
+        [
+          [
+            "gid://shopify/Collection/299059249203",
+            "orange-wallcovering-collection"
+          ]
+        ]
+      ],
+      [
+        "White Collection",
+        "gid://shopify/Collection/299059347507",
+        "white-wallcovering-collection",
+        [
+          [
+            "gid://shopify/Collection/283337850931",
+            "white-wallpaper-collection"
+          ]
+        ]
+      ],
+      [
+        "Phillip Jeffries",
+        "gid://shopify/Collection/302008139827",
+        "phillip-jeffries",
+        [
+          [
+            "gid://shopify/Collection/298270687283",
+            "phillip-jeffries-wallcoverings"
+          ]
+        ]
+      ],
+      [
+        "Abstract Collection",
+        "gid://shopify/Collection/298825089075",
+        "abstract-vinyl-wallcoverings-copy",
+        [
+          [
+            "gid://shopify/Collection/299575967795",
+            "abstract"
+          ]
+        ]
+      ],
+      [
+        "Moody & Dark",
+        "gid://shopify/Collection/298886070323",
+        "moody-dark-1",
+        [
+          [
+            "gid://shopify/Collection/298885709875",
+            "moody-dark"
+          ]
+        ]
+      ],
+      [
+        "Luxury Murals",
+        "gid://shopify/Collection/299533893683",
+        "luxury-murals-1",
+        [
+          [
+            "gid://shopify/Collection/298971070515",
+            "luxury-murals"
+          ]
+        ]
+      ]
+    ],
+    "retitles": [
+      [
+        "Architectural Wallcoverings Wallcoverings / commercial",
+        "architectural-wallcoverings-commercial",
+        "Architectural Wallcoverings (Commercial)"
+      ],
+      [
+        "Architectural Wallcoverings Wallcoverings",
+        "architectural-wallcoverings",
+        "Architectural Wallcoverings"
+      ],
+      [
+        "Hollywood Vinyls Vol.1 (vol-2 handle)",
+        "hollywood-vinyls-vol-2",
+        "Hollywood Vinyls Vol. 2"
+      ],
+      [
+        "Phillipe Romano Screen Printed (wallpaper)",
+        "phillipe-romano-screen-printed-wallpaper",
+        "Phillipe Romano Screen Printed Wallcoverings"
+      ],
+      [
+        "Phillipe Romano Screen Printed (fabric)",
+        "phillipe-romano-screen-printed-fabric",
+        "Phillipe Romano Screen Printed Fabric"
+      ]
+    ]
+  }
+}
\ No newline at end of file
diff --git a/shopify/enrich-marketed-mismatch.jsonl b/shopify/enrich-marketed-mismatch.jsonl
index 9c3baf72..200045f9 100644
--- a/shopify/enrich-marketed-mismatch.jsonl
+++ b/shopify/enrich-marketed-mismatch.jsonl
@@ -124,3 +124,18 @@
 {"id": "gid://shopify/Product/6668143788083", "title": "Hollywood Glamour Glitter - Lemon Iris | Glitter Walls", "marketed": "Iris", "palette": ["White", "Ivory", "Citron", "Wheat", "Chestnut"]}
 {"id": "gid://shopify/Product/6668394856499", "title": "Hollywood Glamour Sequin - Orange Iris | Glitter Walls", "marketed": "Iris", "palette": ["White", "Coral", "Terracotta", "Peach", "Mahogany", "Melon"]}
 {"id": "gid://shopify/Product/6668432932915", "title": "Hollywood Glamour Glitter - Orange Iris | Glitter Walls", "marketed": "Iris", "palette": ["White", "Red", "Coral", "Peach"]}
+{"id": "gid://shopify/Product/6679757389875", "title": "Gustav - Light Blue Wallcovering | Sandberg", "marketed": "Blue", "palette": ["Chalk", "Bone"]}
+{"id": "gid://shopify/Product/6679777083443", "title": "Ljung - Light Gray Wallcoverings | Sandberg", "marketed": "Gray", "palette": ["Alabaster"]}
+{"id": "gid://shopify/Product/6679830265907", "title": "Kristoffer spring green Wallcovering | Sandberg", "marketed": "Green", "palette": ["Bone", "Chalk", "Mist"]}
+{"id": "gid://shopify/Product/6725157781555", "title": "Po\u00e8Me D'Amour - Pale Blue Wallcovering | Schumacher", "marketed": "Blue", "palette": ["Powder Blue", "Alabaster"]}
+{"id": "gid://shopify/Product/6725158928435", "title": "Nyborg - Blue and Red Wallcovering | Schumacher", "marketed": "Blue", "palette": ["White", "Salmon", "Silver", "Eggshell"]}
+{"id": "gid://shopify/Product/6752392151091", "title": "Sunrise Flame Wallcovering - Light Blue/Multi", "marketed": "Blue", "palette": ["Cloud", "Alabaster"]}
+{"id": "gid://shopify/Product/6756366680115", "title": "Metallic Threads Glitter - White/Gold/Khaki | Glitter Walls", "marketed": "White", "palette": ["Espresso", "Olive Drab", "Willow", "Pistachio", "Moss", "Coffee"]}
+{"id": "gid://shopify/Product/6756369301555", "title": "Metallic Threads Glitter - White/Gold/Sand | Glitter Walls", "marketed": "White", "palette": ["Chocolate", "Mocha", "Pecan", "Sand", "Jet"]}
+{"id": "gid://shopify/Product/6756372545587", "title": "Metallic Threads Glitter - White/Gold/Blue Hologram | Glitter Walls", "marketed": "White", "palette": ["Charcoal", "Forest", "Slate", "Midnight", "Peacock", "Turquoise"]}
+{"id": "gid://shopify/Product/6756377329715", "title": "Metallic Threads Glitter - White/Gold/Disco Yellow | Glitter Walls", "marketed": "White", "palette": ["Olive Drab", "Brass", "Espresso", "Moss", "Pear"]}
+{"id": "gid://shopify/Product/6756381163571", "title": "Metallic Threads Glitter - White/Gold/Disco Pink | Glitter Walls", "marketed": "White", "palette": ["Brown", "Mahogany", "Pecan", "Wheat"]}
+{"id": "gid://shopify/Product/6790317867059", "title": "Ice house Stripe - Denim | Ralph Lauren Fabric", "marketed": "Denim", "palette": ["Bone"]}
+{"id": "gid://shopify/Product/6790318915635", "title": "Ice house Stripe - Navy | Ralph Lauren Fabric", "marketed": "Navy", "palette": ["Eggshell"]}
+{"id": "gid://shopify/Product/6790850183219", "title": "Old Taddington Jasper Brown Multi - Beige Fabric | Ralph Lauren", "marketed": "Beige", "palette": ["Clay", "Brick", "Sienna", "Flint", "Ebony", "Cocoa"]}
+{"id": "gid://shopify/Product/6798766047283", "title": "Linen Velvet Camel Beige - Beige Fabric | Ralph Lauren", "marketed": "Beige", "palette": ["Brown", "Pecan"]}
diff --git a/shopify/package-lock.json b/shopify/package-lock.json
index 58734d31..95faa03d 100644
--- a/shopify/package-lock.json
+++ b/shopify/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "dw-metafields-migration",
-  "version": "1.0.1",
+  "version": "1.0.2",
   "lockfileVersion": 3,
   "requires": true,
   "packages": {
     "": {
       "name": "dw-metafields-migration",
-      "version": "1.0.1",
+      "version": "1.0.2",
       "license": "MIT",
       "dependencies": {
         "@shopify/shopify-api": "^9.0.0",
diff --git a/shopify/package.json b/shopify/package.json
index 43652db4..d850653c 100644
--- a/shopify/package.json
+++ b/shopify/package.json
@@ -1,6 +1,6 @@
 {
   "name": "dw-metafields-migration",
-  "version": "1.0.1",
+  "version": "1.0.2",
   "description": "Migrate Metafields Manager data to native Shopify product metafields",
   "main": "dist/server.js",
   "scripts": {
diff --git a/shopify/scripts/enrich-color-details-local.py b/shopify/scripts/enrich-color-details-local.py
index 72ae36fb..0f9d3a91 100644
--- a/shopify/scripts/enrich-color-details-local.py
+++ b/shopify/scripts/enrich-color-details-local.py
@@ -17,9 +17,9 @@ Usage:
   python3 enrich-color-details-local.py --dry <productId>        # extract only, no write
 
 Env (shopify/.env): SHOPIFY_STORE_DOMAIN, SHOPIFY_ADMIN_TOKEN
-Local: ollama qwen2.5vl:7b on 127.0.0.1:11434
+Local: PIL median-cut pixel sampling + deterministic interior-design color table (zero LLM calls, $0)
 """
-import sys, os, json, base64, urllib.request, io, time
+import sys, os, json, urllib.request, io, time
 
 HERE = os.path.dirname(os.path.abspath(__file__))
 ENV = {}
@@ -29,7 +29,7 @@ for line in open(os.path.join(HERE, '..', '.env')):
         k, v = line.split('=', 1); ENV[k.strip()] = v.strip().strip('"\'')
 STORE = ENV['SHOPIFY_STORE_DOMAIN']; TOKEN = ENV['SHOPIFY_ADMIN_TOKEN']
 API = f"https://{STORE}/admin/api/2024-10/graphql.json"
-OLLAMA = 'http://127.0.0.1:11434/api/generate'; MODEL = 'qwen2.5vl:7b'
+
 FAIL_LOG = os.path.join(HERE, '..', 'enrich-failures.jsonl')     # durable record of failed SKUs
 REVIEW_LOG = os.path.join(HERE, '..', 'enrich-marketed-mismatch.jsonl')  # marketed name conflicts with palette
 
@@ -343,7 +343,7 @@ def main():
         return
 
     products = get_products(ids or None, query_str, limit)
-    print(f"Enriching {len(products)} product(s) — hybrid (PIL pixels + {MODEL} naming), $0 local\n")
+    print(f"Enriching {len(products)} product(s) — hybrid (PIL pixels + deterministic table naming), $0 local\n")
     ok = fail = 0
     for p in products:
         t0 = time.time(); title = p['title'][:48]
diff --git a/shopify/theme-LIVE-591/snippets/color-palette.liquid b/shopify/theme-LIVE-591/snippets/color-palette.liquid
index 055af45c..f4bee9f8 100644
--- a/shopify/theme-LIVE-591/snippets/color-palette.liquid
+++ b/shopify/theme-LIVE-591/snippets/color-palette.liquid
@@ -31,7 +31,7 @@
 <div class="dw-color-palette" data-dw-color-palette
   {% if color_details_raw != blank and color_details_raw != 'null' %}data-colors='{{ color_details_raw | escape }}'{% endif %}
   {% if primary_hex != blank %}data-primary-hex="{{ primary_hex }}"{% endif %}
-  {% if ai_colors_raw != blank and ai_colors_raw != 'null' %}data-ai-colors='{{ ai_colors_raw }}'{% endif %}
+  {% if ai_colors_raw != blank and ai_colors_raw != 'null' %}data-ai-colors='{{ ai_colors_raw | escape }}'{% endif %}
   {% if color_name != blank %}data-color-name="{{ color_name }}"{% endif %}
   {% if color_hex != blank %}data-color-hex="{{ color_hex }}"{% endif %}
   {% if product.featured_image %}data-product-image="{{ product.featured_image | img_url: '400x400' }}"{% endif %}
diff --git a/shopify/theme-LIVE-591/snippets/product-gallery.liquid b/shopify/theme-LIVE-591/snippets/product-gallery.liquid
index 988fdc82..3380fb2e 100644
--- a/shopify/theme-LIVE-591/snippets/product-gallery.liquid
+++ b/shopify/theme-LIVE-591/snippets/product-gallery.liquid
@@ -156,7 +156,7 @@
                   product-gallery--{{ media.media_type }}-thumbnail
                 "
                 type="button"
-                tab-index="0"
+                tabindex="0"
                 aria-label="{{ media.alt }} {{ 'general.accessibility.nav_product_thumbnail' | t }}"
                 data-product-gallery-thumbnail="{{ forloop.index0 }}"
                 data-product-gallery-selected="{%- if selected_media.id == media.id -%}true{%- else -%}false{%- endif -%}"

← 24ea6876 dedup v3: ID-based, 5xx-retry, resumable  ·  back to Designer Wallcoverings  ·  chore: refactor session migration scripts (qh-fabric simplif f1af873a →